摘要: 1.回文代码 2.元组类型 3. 4. 5. 6. 7.生成器面试题 8. def get_lst(s): # 得到列表 s=','.join(s) return s.split(',') def get_factor(s): # 得到因子 new_s = ','.join(s) s_lst = n 阅读全文
posted @ 2018-12-29 17:18 烧刘病 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 整型 布尔值 字符串 字符串方法 for循环 整型 32位机长度为 -2**31~2**31-1 64位机长度为 -2**63~2**63-1 python2 中由long长整形python3中没有 python2中/结果是整数,python3中结果含有.0 布尔值 字符串 1.字符串的拼接 2.字 阅读全文
posted @ 2018-12-29 16:25 烧刘病 阅读(187) 评论(0) 推荐(0) 编辑
回到页首