Quick actions

cmd+k|ctrl+k

Navigation

Languages

escape sequence

Snippet info

Language

Python

Visibility

public

Author

dylansiegelman

Created

2024-03-30T23:41:37.748229Z

Updated

2024-03-30T23:41:37.748229Z

weather = "It's sunny" # will work but 'it's sunny' will not
print(weather)

da_weather = "It\'s \"kind of\" sunny"
print(da_weather)

backslashes = "p\oo"

print(backslashes)

stuff = "\t good fun chums" #for indentation
print(stuff)

food = "i like to eat \n the food" #for new line
print(food)
INFO