This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Python Cheatsheet | |
| ================= | |
| ################################ Input & Output ############################### | |
| name = input('please enter your name: ') | |
| print('hello,', name) | |
| ageStr = input('please enter your age: ') | |
| age = int(ageStr) |