Created
July 13, 2021 05:23
-
-
Save codewithpom/5a03aedfedf93f46d41636f394609f5a to your computer and use it in GitHub Desktop.
Tech Print
Teach Print
This file contains 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
# print string | |
print("Hello World") | |
# print int | |
print(3) | |
# print float | |
print(3.5) | |
# print boolean | |
print(True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment