您的位置:首页 > 编程语言 > Python开发

【Python】Learn Python the hard way, ex1 简单print语句

2015-10-06 21:07 671 查看
print "Hello World!"
print "Hello Again"
print "I like typing this."
print "This is fun."
print 'Yay! Printing.'
print "I'd much rather you 'not'."
print 'i "said" do not touch this.'

'''
#The test result
Hello World!
Hello Again
I like typing this.
This is fun.
Yay! Printing.
I'd much rather you 'not'.
i "said" do not touch this.
'''


心得:虽然会用Python写一些简单程序了,但是没有比较系统的学习过,觉得还是有必要,希望能坚持下去,记得从三到万的故事。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: