Skip to content

Instantly share code, notes, and snippets.

@codewithpom
Created July 13, 2021 08:39
Show Gist options
  • Save codewithpom/d0202a4416e55a98e4d3abda575abcd7 to your computer and use it in GitHub Desktop.
Save codewithpom/d0202a4416e55a98e4d3abda575abcd7 to your computer and use it in GitHub Desktop.
number = 9.5
# or you can do this
number = float(9)
# the above line converts nine from int to float and then save it in the number variable
# or even this can be used
number = 9.0
# in the above line we have added a decimal point so it is converted into a float
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment