Skip to content

Instantly share code, notes, and snippets.

View hilen's full-sized avatar
😯
Work hard everyday.

Hilen Lai hilen

😯
Work hard everyday.
  • Hangzhou, China
View GitHub Profile
@hilen
hilen / cheatsheet.py
Created August 27, 2016 11:29 — forked from fuyufjh/cheatsheet.py
My Python Cheatsheet
Python Cheatsheet
=================
################################ Input & Output ###############################
name = input('please enter your name: ')
print('hello,', name)
ageStr = input('please enter your age: ')
age = int(ageStr)