+ 1
What is a string i do not get it
9 Answers
+ 11
A string is several letters (or characters) that are put together.
name = "ADuffield"
# This is a string
LastInitial = 'Z'
#This is a character
Think of it like a "string" of characters.
+ 3
A string is multiple characters put together
+ 3
string is a collection of letters
like. any person's name is a string
+ 1
thanls
+ 1
thanks
+ 1
A string is several letters (or characters) that are put together.
+ 1
any character written under quotes are called strings..
0
It's like storing something, like in brackets or parentheses, (so what you're reading now, in the parentheses, is a string)
- 1
String is just another type of data.
String = "string 123 True False"
Int = 123
Bool = True
List = ["string", 123, True]
and so on