Skip to content

Instantly share code, notes, and snippets.

@leechanwoo
Created August 22, 2017 08:36
Show Gist options
  • Save leechanwoo/95a9f5f1fce23e21e77be66e6f5e6eb2 to your computer and use it in GitHub Desktop.
Save leechanwoo/95a9f5f1fce23e21e77be66e6f5e6eb2 to your computer and use it in GitHub Desktop.
python basic
integer = 10
floating_point = 10.5
string1 = ‘hello python!’
string2 = “hello python”
print( integer )
print( floating_point )
print( string1 )
print( string2 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment