用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
时间: 2024-10-12 22:57:05