输出
- print 'hello,world'
- print语句也可以跟上多个字符串,用逗号隔开,就可以连成一串输出:
print 'The quick brown fox', 'jumps over', 'the lazy dog'
输出的时候,遇到逗号“,”会输出一个空格。 - print也可以打印整数,或者计算结果:
print 300
print 100+200
print '100 + 200 =',100 + 200
输入
- name = raw_input()
输入的内容就会存到变量中,可以直接输入name查看变量内容:
name - 可以改成一个有意义的程序
name = raw_input()
print 'hello,',name - 输入的时候,没有任何提示信息告诉用户,这样很不友好,可以加一个字符串
name = raw_input('please enter your name:')
print 'hello,',name