Skip to content

Instantly share code, notes, and snippets.

View alexzheng0000's full-sized avatar
🎯
Focusing

Alex Zheng alexzheng0000

🎯
Focusing
View GitHub Profile

Step 1: Installation

Install Python3 via homebrew (Optional: in case you do not have pyhton installed. run python3 --version to see if it's installed)

$ brew install python3

Install powerline via pip (python package manager)

$ pip3 install powerline-status

@alexzheng0000
alexzheng0000 / cheatsheet.py
Created August 30, 2016 06:22 — 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)