4-8 string

Posted hushaoyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4-8 string相关的知识,希望对你有一定的参考价值。

1、常用的string模块

 1 import string
 2 
 3 # 26个小写字母
 4 print(string.ascii_lowercase)  
 5 #  abcdefghijklmnopqrstuvwxyz
 6 
 7 # 26个大写字母
 8 print(string.ascii_uppercase)  
 9 # ABCDEFGHIJKLMNOPQRSTUVWXYZ
10 
11 # 10个数字
12 print(string.digits)  # 0123456789
13 
14 # 所以的小写大写字母
15 print(string.ascii_letters)  
16 #abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
17 
18 # 特殊字符
19 print(string.punctuation)  
20 # !"#$%&‘()*+,-./:;<=>[email protected][]^_`{|}~

 

以上是关于4-8 string的主要内容,如果未能解决你的问题,请参考以下文章

如何理解这段代码片段中的两对括号?

Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段

用 g++ 编译的奇怪代码

面试常用的代码片段

golang代码片段(摘抄)

21个常用代码片段