>>> print('100 + 200 =', 100 + 200)
100 + 200 = 300
>>> name = input()
Michael
>>> name
'Michael'
因为input()返回的数据类型是str,str不能直接和整数比较,必须先把str转换成整数。Python提供了int()函数来完成这件事情:
设计程序实现以下结果:
C:\Workspace> python hello.py
please enter your name: Michael
hello, Michael
code:
name = input('please enter your name:')
print('hello,', name)
网友评论