标签:
下载地址 https://www.python.org/downloads/
1 配置环境变量
右键计算机--属性--高级系统设置-高级-环境变量-系统变量--Administratorpath编辑-
添加
C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\Scripts\
C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\Scripts\
C:\Python27\
C:\Python27\Scripts
2 在windows打python 程序
创建一个文件 改成.py文件 编辑 print “hello word!”
cmd
进入d: 运行xx.py
3 在乌版图系统中vim 编辑一个文件
#!/usr/bin/python
#!/usr/bin/env python 系统默认最高级python 版本
print ("hello")
print ("cc\ndd") \n 是换行符
4 命名的规则
变量定义的规则:
son_of_twins_gf
SonOfTwinaGf 只能2种选其一
5 python注释
当行注视:# 被注释内容
多行注释:""" 被注释内容 """
标签:
原文地址:http://www.cnblogs.com/zj0627/p/5476331.html