Skip to content

Instantly share code, notes, and snippets.

@jermenkoo
Created July 6, 2012 15:39
Show Gist options
  • Save jermenkoo/3060954 to your computer and use it in GitHub Desktop.
Save jermenkoo/3060954 to your computer and use it in GitHub Desktop.
asdf
a = 6
b = 3
c = a * b
print("{} {} {}".format(a, b, c))
a = 6
b = 2
c = a / b
print("{} {} {}".format(a, b, c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment