print('Hello, world')
Hello, world
name = input("请输入你的昵称:")
- 字符串:str( )、整型数:int( )、浮点数:float( )
a = "5"
b = int(a)
print(b)
- type( )函数、isinstance( )函数
print(isinstance("Hello, world", str))
print(isinstance("Hello, world", int))
符号 | 描述 |
---|
%c | 格式化字符及其ASCII码 |
%d | 格式化整数 |
%e | 格式化浮点数,用科学计数法 |
%f | 格式化浮点数字,可指定小数点后的精度 |
%g | 格式化浮点数字,根据值的大小采用%e或%f |
%o | 格式化无符号八进制数 |
%s | 格式化字符串 |
%u | 格式化无符号整型 |
%x | 格式化无符号十六进制数(小写字母) |
%X | 格式化无符号十六进制数(大写字母) |
print("我的名字是%s,我的国籍是%s。" % ("aaaa","中国"))
我的名字是aaaa,我的国籍是中国。
wd = 'hello world'
print('w' in wd)
print('str' not in wd)
print(str is type(wd))
print("hello",end="")
print("world",end="\t")
print("next",end="\n")
print("python")
helloworld next
print("www","baidu","com")
print("www","baidu","com",sep=".")
print("www","baidu","com",sep="\n")
python 四则运算
print(10//3)
print(10//-3)
print(-10//3)
print(-10//-3)
print(3**2)
print(2**2)
if 条件判断语句
while循环语句、for循环语句
https://www.cnblogs.com/baicj/p/5075912.html
https://blog.csdn.net/u014344668/article/details/80229132
https://blog.csdn.net/wangmx1993328/article/details/88787495
https://blog.csdn.net/caozl1132?spm=1019.2139.3001.5343
break语句、continue语句
pip
- list 列出当前已经安装的包。使用命令
pip list -o
则可查询可升级的包。 show 显示包所在目录及信息,格式为:pip show <包名>
。 search 搜索包,格式为:pip search <搜索关键字>
- pip list
- pip install -i
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package