python3里面print后面的内容必须要用英文半角的(),输出文字要加双引号""或者单引号''
可以用 + 连接两个连续输出的内容,英文的逗号 , 某些情况下会被识别为空格。
end参数可以让print不换行,如果要换行,可以用\n
在python3里,raw_input没有了,input()获取的内容全部归于字符串。
如果想用input()直接获取计算结果,那么可以 X = eval(input())
下面写一段很简单的代码试试手:(对于初学的腊五来说,已经不简单了)
print("这是一个基于python3的自我测试",end="")
print("(This is a self test based on python3):")
name = input("输入你的名字(Enter your name):")
age = input("输入您的年龄(Enter your age):")
work = input("您从事的工作:(What's your occupation)")
print("您的档案资料如下(Your information is as follows):\n——————————")
print("姓名(Name):"+name,"| 年龄(Age):"+age,"| 职业(Work):",work)
运行结果截图: