美文网首页
输入输出

输入输出

作者: XYZ7 | 来源:发表于2017-02-25 11:34 被阅读0次

输出

>>> print('hello, world')
hello, world

print()函数也可以接受多个字符串,用逗号“,”隔开,就可以连成一串输出:

>>> print('The quick brown fox', 'jumps over', 'the lazy dog')
The quick brown fox jumps over the lazy dog
>>> print('100 + 200 =', 100 + 200)
100 + 200 = 300

输入

>>> name = input()
Michael
name = input('please enter your name: ')
print('hello,', name)

相关文章

网友评论

      本文标题:输入输出

      本文链接:https://www.haomeiwen.com/subject/xvwgwttx.html