Answers for "% string in python"

16

how to create string in python

string = "this is string"
#or
string = 'this is also string'
Posted by: Guest on April-15-2020
0

python string

#Strings in python are surrounded by either single quotation marks, or double quotation marks.
print("This is a string")
print('i am also a string')
Posted by: Guest on June-30-2021

Code answers related to "% string in python"

Python Answers by Framework

Browse Popular Code Answers by Language