标签:
1.程序输出——print语句
>>> myString = ‘Hello World!‘ >>> print myString Hello World! >>> myString ‘Hello World!‘
注意:在仅用变量名的时候,输出的字符串是用单引号括起来的
2.程序输入——raw_input()内建函数
>>> user = raw_input(‘Enter your name:‘) Enter your name:root >>> print ‘Your name is:‘,user Your name is: root
3.注释——使用#
标签:
原文地址:http://www.cnblogs.com/tonglin0325/p/5700938.html