0
Dont get the ideal meaning of a string
4 Answers
+ 1
Strings hold texts.
For examle:
INPUT
"Python"
OUTPUT
'Python'
+ 1
All the things doesn't be an integer por float, generally are text.
0
+1 Jordan. also, things get tricky when you think
"18" = string
18 = integer
if you had to choose between making a number a string or an integer, you would choose integer when you would want to perform mathematical functions against the number.
18 x 2 = 36
"18" x 2 = 1818
0
String type (as opposed to integer) can be changed by adding other characters or string variables (letters, symbols and numbers)