+ 2
What is a string
7 ответов
+ 11
if you want to process a data containing word, use string
if you want to process a data containing number, use integer or float or double
if you want to process a data containing character, use chr
ex:
>>>x = "hello " #that is string
>>>y = "world" #another string
>>>print(x+y) #output hello world
+ 8
"a" is a char
"ciao" more then one char, it is a string
+ 6
A char is a letter. ( " A " = char )
A String is a word. ( " Apple " = string )
+ 4
a string is a sequence of characters, either as a literal constant or as a variable
+ 2
a set of letters, numbers or symbols, all in a particular order.
+ 1
i dont get it