0
What is the keyword for character variable in python?
3 Réponses
0
chr gets the charter in ASCII
chr(65)='a'
ord(a)=65
0
There's no such type as a character in Python.
0
Since Python has string data types and
"In computer programming, a string is traditionally a sequence of characters"
source: https://www.google.com/search?q=what+are+strings+in+programming