8 lines
285 B
Python
Raw Normal View History

2021-04-17 22:41:26 -04:00
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)