下载地址 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 命名的规则
变量定义的规则:
- 变量名只能是 字母、数字或下划线的任意组合
- 变量名的第一个字符不能是数字
- 以下关键字不能声明为变量名
[‘and‘, ‘as‘, ‘assert‘, ‘break‘, ‘class‘, ‘continue‘, ‘def‘, ‘del‘, ‘elif‘, ‘else‘, ‘except‘, ‘exec‘, ‘finally‘, ‘for‘, ‘from‘, ‘global‘, ‘if‘, ‘import‘, ‘in‘, ‘is‘, ‘lambda‘, ‘not‘, ‘or‘, ‘pass‘, ‘print‘, ‘raise‘, ‘return‘, ‘try‘, ‘while‘, ‘with‘, ‘yield‘]
son_of_twins_gf
SonOfTwinaGf 只能2种选其一
5 python注释
当行注视:# 被注释内容
多行注释:""" 被注释内容 """
时间: 2024-10-10 17:27:50