8 lines
285 B
Python
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)
|