python1day

下载地址 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

python1day的相关文章

python-1day

python笔记 <head> 打印命令 print ----print 打印命令------ 定义变量格式 XXX = ("XXX") 引用格式1:print(XXX) 引用格式2:print('输入任何内容加引号',XXX) 打印字符类型 print(type(XXX)) 实验 name = "Hello World!" print(name) print('my name is',name) 返回结果 Hello World! my name is