命令行模式
知识点
- Python 命令行的使用
实战演习
$ python -V
$ python
Python 3.7.0
>>> print("Helo Python World!")
>>> ^Z
>>> 1+1
>>> 2+2
>>> 10+20
>>> 5-3
>>> 30/5
>>> 6/5
>>> 11/3
>>> 11//3
>>> round(11/3)
>>> 2*3
>>> 2**3
>>> 2**8
>>> a=10
>>> b=20
>>> a+b
>>> a-b
>>> a*b
>>> a/b
>>> 'helo world'
>>> 'helo world'.title() #'Helo World'
>>> 'helo world'.upper() #'HELO WORLD'
>>> 'Helo World'.lower() #'helo world'
>>> str = "helo\nworld" #换行\n
>>> print(str)
输出:
helo
world
>>> str = "helo\tworld" #间隔一个tab(vim中是8个字符,VScode默认4个)
>>> print(str)
输出:
helo world
>>> str = "C:\node\npm" #
>>> print(str)
输出: #默认把\n转义了,不是我们期待的结果,我们期待输出完整的path
C:
ode
pm
>>> str = r"C:\node\npm" #加上r,输出了完整的path,表明括号内的是纯文字串,告诉程序不要转义,即是字符串。
>>> print(str)
输出:
C:\node\npm
>>> print(str[0])
输出: #表明第一个字符是C
C
>>> print(str[1])
输出:
:
>>> print(str[2])
输出:
\
>>> print(str[3]) #同理
>>> print(str[1:5]) #打印从1到5,切片功能,from 1 to 5
输出:
:\no
>>> print(str[:5]) #打印从头开始到5,切片功能,from 0 to 5
输出:
C:\no
>>> print(str[5:]) #打印从5开始到最后,切片功能,from 5 to 最后
输出:
de\npm
>>> ^Z #退出 ctrl+z 或者ctrl+d(mac)
课程文件
https://gitee.com/komavideo/LearnPython3