Skip to content

Instantly share code, notes, and snippets.

View Yuhuishishishi's full-sized avatar

Yuhui Shi Yuhuishishishi

View GitHub Profile
# packages in environment at /Applications/anaconda3/envs/ds:
#
# Name Version Build Channel
_anaconda_depends 2019.03 py36_0
_ipyw_jlab_nb_ext_conf 0.1.0 py36_0
_py-xgboost-mutex 2.0 cpu_0
alabaster 0.7.12 py36_0
anaconda custom py36_1
anaconda-client 1.7.2 py36_0
anaconda-navigator 1.9.7 py36_0
@Yuhuishishishi
Yuhuishishishi / cheatsheet.py
Created August 26, 2016 21:49 — 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)