Skip to content

Instantly share code, notes, and snippets.

@shamikalashawn
Created February 6, 2017 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shamikalashawn/d5a50a970723f640b9c6f97595dfe0ba to your computer and use it in GitHub Desktop.
Save shamikalashawn/d5a50a970723f640b9c6f97595dfe0ba to your computer and use it in GitHub Desktop.
An introductory use of variables and multiline strings.
i = 5
print(i)
i = i+1
print(i)
s = '''This is a multi-line string.
This is the second line.'''
print(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment