摘要: #数字 int #字符串 replace find join strip startwith endwith upper lower format 特殊的 v = template.format(**{name:'fdsa',age:'fdasf'}) #列表 append extend ... 阅读全文
posted @ 2018-02-09 21:48 MrZY 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #######################list 类 列表######################## li = [1, 2, 343, 'dfas', ['fsad', 'dfas'], True] # list 是一个集合 能放任何东西进去 # print(li[0:3]) # list 是可以修改的 # 索引法 # li[1] # a = li[4][0] value = 'f... 阅读全文
posted @ 2018-02-09 21:47 MrZY 阅读(294) 评论(0) 推荐(0) 编辑
摘要: #格式化造句 a = input('请输入姓名:') b = input('请输入地点:') c = input('请输入爱好:') str1 = '敬爱可亲的{},最喜欢在{}干{}。' v = str1.format(a,b,c) print(v) # 敏感词过滤系统 inp = input('请输入内容') if '苍老师' in inp : inp_new = inp.repla... 阅读全文
posted @ 2018-02-09 12:44 MrZY 阅读(127) 评论(0) 推荐(0) 编辑