Answers for "3 quotes in python"

6

python put quotes in string

# any character with a "" before it is ignored as syntax and placed in the string

print(""This should work for you" I said")
Posted by: Guest on June-04-2020
0

what does triple quotes mean in python

# triple quotes string can extend multiple lines
my_string = """Hello, welcome to
           the world of Python"""
print(my_string)
Posted by: Guest on September-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language