We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
string
1 parent aa0d217 commit 45a8ef1Copy full SHA for 45a8ef1
_string.py
@@ -0,0 +1,8 @@
1
+import string
2
+
3
4
+print("Lowercase Letters: ", string.ascii_lowercase)
5
+print("Uppercase Letters: ", string.ascii_uppercase)
6
+print("Whole Letters: ", string.ascii_letters)
7
+print("Digits: ", string.digits)
8
+print("Punctuations: ", string.punctuation)
0 commit comments