Created
September 2, 2022 19:37
-
-
Save alex-ber/b4cc0d82397f2f2f516319d86614ca5e to your computer and use it in GitHub Desktop.
02_variables2.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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