Skip to content

Instantly share code, notes, and snippets.

@codewithpom
Last active July 13, 2021 17:40
Show Gist options
  • Save codewithpom/e569e051d01e36d1d5d094f4180cb38a to your computer and use it in GitHub Desktop.
Save codewithpom/e569e051d01e36d1d5d094f4180cb38a to your computer and use it in GitHub Desktop.
# 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