Skip to content

Instantly share code, notes, and snippets.

@johnsonzx
johnsonzx / cheatsheet.py
Created September 2, 2016 01:08 — 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)