标签:字符串 for list div max python oat insert upper
#字符串操作 a=‘ abcdefg ‘.title() print(a) print(a.lower()) print(a.upper()) print(a.lstrip()) print(a.rstrip()) print(a.strip()) #数 age=‘18‘ b="I am "+ str(float(int(age)))+"everyears hahah!" print(b) list=[1,2,3,4,5,6,7,8,9,0] list.append(‘a‘) list.insert(-1,1) del list[-1] list.pop(-1) list.remove(0) list.sort() len(list) for i in list: print(i) min(list) max(list) sum(list) squares=[value**2 for value in range(1,11)] #定义元组 tuple=(value1,value2,value3)
标签:字符串 for list div max python oat insert upper
原文地址:https://www.cnblogs.com/fqqwz/p/11632738.html