0
Can someone help with strings?? Im confused what is it?
2 Réponses
+ 18
Confused with what?
+ 5
Think of it this way:
A String is a bunch of characters.
Where a character can be, a, v, &, ), anything on your keyboard that can be put into text.
We use the quotes to say that we are creating a String.
Example/
someString = "This is a String!"
print(someString)
Output:
This is a String!