Python Strings
Strings are set of letters, charectors, or numbers. When I say numbers don't mix it with python numbers:
This is a string
x = "2"
This is a number
x = 2
Strings are set of letters, charectors, or numbers. When I say numbers don't mix it with python numbers:
This is a string
x = "2"
This is a number
x = 2