+ 1
What is the keyword for special charters in python?
3 Réponses
+ 3
Metacharacters I guess?
+ 2
# Try to run this and it will print all Python keywords.
import keyword
for word in keyword.kwlist:
print(word)
If this is not what you're referring to, then What do you mean? Can you give some examples? Please clarify your question. Thanks!
+ 2
This gives some common punctuation characters:
from string import punctuation
print(punctuation)