Skip to content

Instantly share code, notes, and snippets.

@LokiSharp
LokiSharp / cheatsheet.py
Created September 8, 2016 12:21 — 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)