python1day
下载地址 https://www.python.org/downloads/
一 配置环境变量
右键计算机--属性--高级系统设置-高级-环境变量-系统变量--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
二 在windows打python 程序
创建一个文件 改成.py文件 编辑 print “hello word!”
cmd
进入d: 运行xx.py
三 在乌版图系统中vim 编辑一个文件
#!/usr/bin/python
#!/usr/bin/env python 系统默认最高级python 版本
print ("hello")
print ("cc\ndd") \n 是换行符
四 命名的规则
变量定义的规则:
- 变量名只能是 字母、数字或下划线的任意组合
- 变量名的第一个字符不能是数字
- 以下关键字不能声明为变量名
['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种选其一
五 python注释
当行注视:# 被注释内容
多行注释:""" 注释内容 """
六 用户输入
python 3 user_name = input("what your name")
python 2.7 user_name=raw_input("what your name")
python 2.7 input 申明变量
name = jack #先赋予变量
user_name=input("what your name")
what your name name # 显示出what your name 输入 name
print (user_name) # 打印 user_name
jack
七 替换
name = input("what your name:")
age = input("how old you:") #%d int(input("how old you")) #%f 代表浮点 例如3.000
work = input("what are you doning:")
mesage = '''
--------------------
Name : %s
AGE : %s
Work : %s
''' % (name,age,work)
print (mesage)
八 常用模块 ( getpass os tab)模块
乌版图python3 用
import getpass
name = input("what your name:")
password = getpass.getpass("password")
print(name,password)
在 python 环境下
import os
os.system("df -h")
a=os.popen("df -h").read()
print(a)#结果打印出来
os.mkdir("you Dir") 创建目录
os.system("ls z*")
import tab
1 #!/usr/bin/env python
2 # python startup file
3 import sys
4 import readline
5 import rlcompleter
6 import atexit
7 import os
8 # tab completion
9 readline.parse_and_bind('tab: complete')
10 # history file
11 histfile = os.path.join(os.environ['HOME'], '.pythonhistory')
12 try:
13 readline.read_history_file(histfile)
14 except IOError:
15 pass
16 atexit.register(readline.write_history_file, histfile)
17 del os, histfile, readline, rlcompleter 九 if 语句 else
user = 'alex'
passwd= 'alex3714'
username = input("username:")
password = input("password:")
if user == username and passwd == password:
print("Welcome login")
else:
print("Invalid username or password..")
if user == username and passwd == password:
print("Welcome login")
else:
print("Invalid username or password..")
if else 优化
user = 'alex'
passwd= 'alex3714'
username = input("username:")
password = input("password:")
if user == username and passwd == password:
print("Welcome login")
else:
print("Invalid username or password..")
十 for i in range(10):
print (i)
缩进 TAB
往回缩 shift tab
age =31
con = 0
for i in range(10):
if con <3:
guss = int(input("how old:"))
if guss == age:
print("ok")
break
elif guss <age:
print("smale")
else:
print("big")
else:
wan = input("plase hai wan ma?")
if wan == 'y':
con = 0
contiue# 不往下走
else:
print("no")
break
con=con+1
python1day的更多相关文章
- Python-1-Day
C = float(input("Enter a degree in Celsius:"))F = (9/5) * C + 32print("{0} Celsius is ...
随机推荐
- 【转】oracle in和exists、not in和not exists原理和性能探究
转自http://www.2cto.com/database/201310/251176.html 对于in和exists.not in和not exists还是有很多的人有疑惑,更有甚者禁用not ...
- React(JSX语法)----JSX拼写
注意:For DOM differences,such as the inline style attribute,check here. // bad: it displays "FIrs ...
- CoreData数据库
一 CoreData 了解 1 CoreData 数据持久化框架是 Cocoa API 的一部分,首先在iOSS5 版本的系统中出现: 它允许按照 实体-属性-值 模式组织数据: ...
- Angularjs 服务注册
$injector: (When you request a service, the $injector is responsible for finding the correct service ...
- HTML学习-日常问题-1
最近入了Html的坑 所以开始了学习前端的漫长道路 所以打算将日常遇到的小问题记录下来 1.关于img自适应的问题 <div class="main"> <div ...
- ObjectOutputStream序列化问题
ObjectOutputStream序列化对象传输时,为了节省开销,会自动比较以前序列化过的对象,如果一致(指内存,不比较内容),则自动引用以前用过的对象,这就造成了传输到对方的对象总是第一次序列化的 ...
- 影响div背景色显示的问题
说来惭愧,走上程序猿这条不归路已经一年了,却连自己的博客都没有.看到道上有脸面的大神博客都做得贼漂亮~~于是,按捺不住了~~ 今天终于开通了博客园博客,正式开始我的博客人生啦!!!~~吼吼~~ 废话少 ...
- unity行为树制作AI简单例子(2)
继续昨天的工程,给Monster添加一个空物体命名为AI,在AI添加脚本BehaviorTree,然后就可以打开行为树编辑器进行编辑了 先写好自定义的节点脚本,下面是一个寻找漫游点的行为节点脚本 us ...
- liunx之:ln命令
linux 一个很重要的命令 它的功能是为某一个文件在另外一个位置建立一个同步的链接,这个命令最常用的参数是-s,具体用法是: ln -s 源文件 目标文件 -s 是 symbolic的意思 ...
- Saddest's polar bear Pizza offered new YorkShire home
Saddest:adj,可悲的,悲哀的,polar,两级的,极地额,YorkShire,约克郡 A UK wildlife park has confirmed that it is offering ...