代码改变世界

笨方法学Python-ex1

2018-03-22 14:13  许默良  阅读(110)  评论(0)    收藏  举报

1 print("hello,world")
2 print("hello again")
3 print("i like trying like this")
4 print("this is fun")
5 print('yay!printing')
6 print("i'd like rather you 'not'. ")
7 print('i"said"do not touch this')
8 #加分题
9 print("多打印一行")

输出:

hello,world
hello again
i like trying like this
this is fun
yay!printing
i'd like rather you 'not'.
i"said"do not touch this
多打印一行