2018年3月19日

python自学2018/03/19-dict的使用

摘要: 字典的特性:dict是无序的key必须是唯一的 阅读全文

posted @ 2018-03-19 17:07 haitun425 阅读(87) 评论(0) 推荐(0) 编辑

python自学2018/03/19-字符串常用操作

摘要: 1 name = 'my\tname is mengdewen' 2 # 大写首字母 3 print(name.capitalize()) 4 # 计数字符 5 print(name.count('a')) 6 # 以“-”扩充字符串,长度到50,原字符串居中 7 print(name.center(50, '-')) 8 # 把字符串转换成2进制 9 print(name.e... 阅读全文

posted @ 2018-03-19 16:25 haitun425 阅读(93) 评论(0) 推荐(0) 编辑

导航