Last active
July 13, 2021 17:40
-
-
Save codewithpom/e569e051d01e36d1d5d094f4180cb38a to your computer and use it in GitHub Desktop.
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
# create a string variable | |
name = "Padmashree" | |
# print string variable | |
print(name) | |
# create a float variable | |
float_number = 4.5 | |
# print float variable | |
print(float_number) | |
# create an int variable | |
int_number = 8 | |
# print int variable | |
print(int_number) | |
# create a bool variable | |
python_is_awesome = True | |
# print bool variable | |
print(python_is_awesome) | |
# Now you all are perfect in output and variables | |
# Have Fun ๐๐ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment