Skip to content

Instantly share code, notes, and snippets.

@alex-ber
Created September 2, 2022 19:37
Show Gist options
  • Save alex-ber/b4cc0d82397f2f2f516319d86614ca5e to your computer and use it in GitHub Desktop.
Save alex-ber/b4cc0d82397f2f2f516319d86614ca5e to your computer and use it in GitHub Desktop.
02_variables2.py
first=2
second=3
result=first+second
print("The result of", end=' ')
print(first, end=' ')
print("+", end=' ')
print(second, end=' ')
print("is", end=' ')
print(result, end=' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment