Colt Stelle: Notes

Variables

Untitled

Untitled

Untitled

Untitled

Python Escape Sequences

Untitled

**Examples** 

# Set the message variable equal to any string containing a new-line escape sequence
message = "Hello \\n goodbye"
 
# Add a string to the mountains variable that when printed results in: /\\/\\/\\
# You will need to use an escape sequence more than once!
 
mountains = "/\\\\/\\\\/\\\\"
 
 
# Set the quotation variable to any string that contains an escaped double quotation mark
quotation = "My cat said \\"meow\\""

Untitled

Untitled

Untitled

Untitled

Untitled

Untitled

Untitled

Untitled

for loops

In Python, for loops are written like this: