摘要:
# 返回绝对值 n = [-1, 1.1, 3+4j] for i in n: print(abs(i)) # 如果参数为complex,则返回其模运算结果 阅读全文
摘要:
开发多个应用: 如A需要jinja2.7开发;如B需要jinja2.6开发。或者C需要Python2.7开发,D需要Python3.5开发 那么解决上述问题就需要使用virtualenv这个模块: 它的作用是:创建“隔离”环境,使项目拥有独立的Python运行环境 下载:(存在:安装Python版本 阅读全文
摘要:
# string Moudle """ Data: ascii_letters 大小写字母 ascii_lowercase 小写字母 ascii_uppercase 大写字母 digits 数字0-9 hexdigits 十六进制 012345678... 阅读全文
摘要:
# 字符串替换 s = " work hard" print(s.replace('r', '0')) # new replace old print(s.replace('wo', '01')) print(s.replace('d', '0')) # old not in s, return s print(s.replace('r', '0', 1)) # count=1 阅读全文