1.安装Pycharm
安装好后从http://idea.lanyus.com找到注册码,然后复制到Pycharm中,然后从C:\Windows\System32\drivers\etc目录下找到hosts文件,将0.0.0.0 account.jetbrains.com及0.0.0.0 www.jetbrains.com添加到hosts文件中。
hosts文件中加入两句是为了防止检测
2.一些python语言基础
- 输入输出,类型转换
- 判断语句else if,switch等
3.变量名命名法
- 驼峰式命名法、下滑线命名
- 大驼峰--UserNameInfo(命名类)
- 小驼峰--userNameInfo(命名方法名、函数)
- 下滑线user_name_info
4.Python版本区别
- python 2.0 : 源码不规范,重复代码很多
python 3.0 : 源码精简,美观、优雅 - python 2.0 : 有整型int、长整型long
python 3.0:只有整型int - python 2.x print" "
python 3.x print(" ")
python 2.x print "Hello World"
python3.x print("Hello World")