美文网首页
Python基础

Python基础

作者: 云雾海玲 | 来源:发表于2016-12-28 20:09 被阅读0次

输出

```python

>>>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

>>>print(100+200)

300

```

输入

```python

>>>name = input()

Zhangh

>>>name

'Michael'

```

相关文章

网友评论

      本文标题:Python基础

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