Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Created October 3, 2019 19:24
Show Gist options
  • Save shifatul-i/3d82b09a25ab4487f067190e056f2d1c to your computer and use it in GitHub Desktop.
Save shifatul-i/3d82b09a25ab4487f067190e056f2d1c to your computer and use it in GitHub Desktop.
my_var = 7
print(my_var)
my_var = 7.0
print(my_var)
my_var = int(my_var) # casting
print('int again:', my_var)
my_var = 'hello'
print(my_var)
name = 'Sif'
age = 16
print('{} is {} years old'.format(name, age))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment