01-02 python下载和简单代码
2019-01-04 本文已影响10人
君子地
1 如何安装?
去官网,搜python
2 安装完了,写第一行代码
>>> 代表计算机在等你录入命令。
写上>>> print ('hello world')
按回车,就可以了。
3 不想一个个敲,要在>>> 后面展示上一条命令?
alt+n 就返回上一条
alt+p 下一条,》》》后面就不断地移动命令
4 把一个文字换行8次,怎么编?
》》》print(‘hello world\n’*8)。
\n是换行的意思。
5 python怎么读?
拍肾~~