python 输入输出,诠释的使用
python 输入输出,注释的使用

用EidtPlus新建一个py文件.代码如下(不能用notepad)
#-*- coding:cp936 -*- print 'hello, python' print 'first 1', 'second 2' print '100 + 200 =', 100+200 #用户输入 """ 用户输入 """ name = raw_input() print '输入的数据:', name name = raw_input('please enter your name:') print 'hello', name