一日一技:在 Python 里面的常用常量字符串
2021-03-12 19:29
标签:pytho mamicode hit 摄影 ase code ati 字符 pac 摄影:产品经理 后来,我知道了,原来代码可以这样写: string模块包含了我们常用的一些常量字符串: 一日一技:在 Python 里面的常用常量字符串 标签:pytho mamicode hit 摄影 ase code ati 字符 pac 原文地址:https://blog.51cto.com/15023263/2558899
地点:龙井村
曾经,当我想实现:从24个小写字母中随机选择一个字母的时候,我是这样写代码的:
import random
letter = random.choice(‘qwertyuiopasdfghjklzxcvbnm‘)
import random
import string
letter = random.choice(string.ascii_lowercase)
文章标题:一日一技:在 Python 里面的常用常量字符串
文章链接:http://soscw.com/index.php/essay/63790.html