Python基础

2016-12-28  本文已影响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'

```

上一篇 下一篇

猜你喜欢

热点阅读