2017年7月18日

python 大小写转换函数

摘要: capitalize() 首字母大写,其余全部小写 upper() 全转换成大写 lower() 全转换成小写 title() 标题首字大写,如"i love python".title() "I love python" 阅读全文

posted @ 2017-07-18 16:15 枝桠 阅读(1760) 评论(0) 推荐(0) 编辑

Python之str型转成int型

摘要: str转int: 输出如下: 整理成一个 str2int 函数就是如下喽: 用匿名函数lambda再简化一下就成了下面这个样子: WOC,就一行代码哦,够简单! 阅读全文

posted @ 2017-07-18 15:58 枝桠 阅读(11473) 评论(0) 推荐(1) 编辑

导航