+ 1
How To Use String. ?
6 odpowiedzi
+ 8
@Sami Khan
you forgot parentheses in print()
Sololearn uses python 3, not 2
+ 7
"a string is in quotes"
#but you can convert something, like a number, to a string by saying:
str(4)
+ 2
Strings are a form of manipulatable text in Python that you can use to show output.
Strings always have ""..."" or '...'.
Within a ""..."", any ' will not be regarded as the end of a string and vice versa.
+ 1
Plz
+ 1
what purpose u want to use String..
#this is a string
var1 = 'Hello World!'
#This is how u print string
print (var1)
+ 1
oh yes..