[Python] 纯文本查看 复制代码 st="Hello world"
ea=" china"
print(st[2:8])
print(len((st))) #获取字符串长度
print(max(st)) #求出最大ASCii码
print(min(st))
print(st+ea) # Hello world china
st2 = sorted(st) # 转化成字符列表,并进行排序
print(st2)
print(st.index('or')) #查找字符串或者字符出现的位置 7
print(st.count('l')) #统计字符的个数 3
#新p1的第四五六章
a=18
name="小明"
pi=3.14159
#格式化输出
print('%s今年%4d岁'%(name,a))
print("保留2位小数%.2f"%pi)
print(f"{name}今年{a}岁")
st = "7 8 9"
a, b, c = st.split() # 字符串连续赋值
print(a, b, c)
d, e, f = map(int, st.split()) # 整数连续赋值
y_list = list(map(int, st.split())) # 整数列表
print(y_list)
[Python] 纯文本查看 复制代码 #元组
tuple1=()
print(type(tuple1))
list1=[1,2,3,4,5]
tuple2=tuple(list1)
print(tuple2)
print(tuple2[-1])
tuple3 = ('a','1','4', 'b', 'c', 'd', 'b', 'c', 'd')
print(tuple3.index('d'))
print(tuple3.count('c'))
tuple4 = sorted(tuple3)
print(tuple4)
[Python] 纯文本查看 复制代码 #p3 第四第五章tuple
num = {'one': 1, 'two': 2, 'three': 3} # 键值对 键:值
print(num)
num["你好"]=8
print(num)
del num['one'] #删除内容
num.clear() #清空字典
student1 = {'姓名': '卢旭', '年龄': 11, '语文': 98} # 键值对 键:值
print(student1['姓名'])
|