• 2023/09/17
  • print( )函数、input( )函数
# 打印Hello, world
print('Hello, world')
Hello, world
 
# input()函数:接受一个标准输入数据,返回为string类型
name = input("请输入你的昵称:")
  • 字符串:str( )、整型数:int( )、浮点数:float( )
# 类型转换

# 此处int()的作用:把字符串变成了数值
a = "5"
b = int(a)
# 去掉了双引号
print(b)
  • type( )函数、isinstance( )函数
    • 用以识别变量的类型

  
# isinstance()函数
print(isinstance("Hello, world", str))  # 返回True
print(isinstance("Hello, world", int))  # 返回False
  • 字符串格式化输出
符号描述
%c格式化字符及其ASCII码
%d格式化整数
%e格式化浮点数,用科学计数法
%f格式化浮点数字,可指定小数点后的精度
%g格式化浮点数字,根据值的大小采用%e或%f
%o格式化无符号八进制数
%s格式化字符串
%u格式化无符号整型
%x格式化无符号十六进制数(小写字母)
%X格式化无符号十六进制数(大写字母)


# 格式化输出字符串
print("我的名字是%s,我的国籍是%s。" % ("aaaa","中国"))
我的名字是aaaa,我的国籍是中国。

wd = 'hello world'
#  in not in  is not is

print('w' in wd)
print('str' not in wd)
print(str is type(wd))

  • end函数、sep函数
# end函数
print("hello",end="")     # end=""   不换行,直接链接下一句
print("world",end="\t")   # end="\t" 中间空个Tab
print("next",end="\n")    # end="\n" 换行
print("python")
helloworld	next
 
# sep函数
print("www","baidu","com")
print("www","baidu","com",sep=".")
print("www","baidu","com",sep="\n")

python 四则运算

#  四则运算
# + - * /   //    **
print(10//3)    # 3
print(10//-3)  # -4
print(-10//3)  # -4
print(-10//-3)  # 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