摘要:
# 创建字典的几种方式: # 使用元素创建: dict01 = {"qtx":1000,"wk":500,"bj":2000} print(dic) # 使用其他容器: dict01 = [("唐僧",100),["八戒",500],"沙僧"]dict02 = dict[dict01] print( 阅读全文
摘要:
列表创建:# 方式一:(常用)s = [1, 2, '小超银']print(s) # [1, 2, '小超银']# 方式二:(不常用)s1 = list() # 空列表l1 = list('123')print(l1) # ['1', '2', '3']# 方式三:列表推导式l1 = [i for 阅读全文
摘要:
# upper lower#不会对原字符串进行任何操作,都是产生一个新的字符串 s = 'XiaoChaoYin's1 = s.upper()print(s1) # XIAOCHAOYINs2 = s.lower()print(s2) # xiaochaoyin #startswith 判断是否以. 阅读全文