2021-04-18 21:39:05 +00:00

8 lines
285 B
Python

firstString = "You can use Single or Double Quotes to define Strings"
secondString = "With Double Quotes you DON'T have to escape apostrophes (')"
finalString = 'With Single (\') quotes you DO have to escape each apostrophe!'
print(firstString)
print(secondString)
print(finalString)