1.变量类型
变量赋值
Python 中的变量赋值不需要类型声明。
每个变量在内存中创建,都包括变量的标识,名称和数据这些信息。
每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建。
# -*- coding: UTF-8 -*-
表示注释使用汉字,UTF-8编码。
单行注释使用#
# -*- coding: UTF-8 -*-
counter = 100 # 赋值整型变量
miles = 1000.0 # 浮点型
name = "John" # 字符串
print counter
print miles
print name
多个变量赋值
两个整型对象1和2的分配给变量 a 和 b,字符串对象 "john" 分配给变量 c
a, b, c = 1, 2, "john"
创建一个整型对象,值为1,三个变量被分配到相同的内存空间上
a = b = c = 1
标准数据类型
Numbers(数字)
String(字符串)
List(列表)
Tuple(元组)
Dictionary(字典)
- Python数字
var1 = 1
var2 = 10
也可以使用del语句删除一些对象的引用。
del var1,var2
Python支持四种不同的数字类型:
int(有符号整型)
long(长整型[也可以代表八进制和十六进制])
float(浮点型)
complex(复数)
- Python字符串
# -*- coding: UTF-8 -*-
str = 'Hello World!'
print str # 输出完整字符串
print str[0] # 输出字符串中的第一个字符
print str[2:5] # 输出字符串中第三个至第五个之间的字符串
print str[2:] # 输出从第三个字符开始的字符串
print str[:-3]
print str * 2 # 输出字符串两次
print str + "TEST" # 输出连接的字符串
Hello World!
H
llo
llo World!
Hello World!Hello World!
Hello World!TEST
Hello Wor
- Python列表
# -*- coding: UTF-8 -*-
str = 'Hello World!'
list = ['runoob', 786, 2.23, 'john', 70.2]
tinylist = [123, 'john']
print list # 输出完整列表
print list[0] # 输出列表的第一个元素
print list[1:3] # 输出第二个至第三个的元素
print list[2:] # 输出从第三个开始至列表末尾的所有元素
print tinylist * 2 # 输出列表两次
print list + tinylist # 打印组合的列表
['runoob', 786, 2.23, 'john', 70.2]
runoob
[786, 2.23]
[2.23, 'john', 70.2]
[123, 'john', 123, 'john']
['runoob', 786, 2.23, 'john', 70.2, 123, 'john']
- Python元组
元组不能二次赋值,相当于只读列表。
tuple = ('runoob', 786, 2.23, 'john', 70.2)
tinytuple = (123, 'john')
print tuple # 输出完整元组
print tuple[0] # 输出元组的第一个元素
print tuple[1:3] # 输出第二个至第三个的元素
print tuple[2:] # 输出从第三个开始至列表末尾的所有元素
print tinytuple * 2 # 输出元组两次
print tuple + tinytuple # 打印组合的元组
('runoob', 786, 2.23, 'john', 70.2)
runoob
(786, 2.23)
(2.23, 'john', 70.2)
(123, 'john', 123, 'john')
('runoob', 786, 2.23, 'john', 70.2, 123, 'john')
- Python 字典
dict = {}
dict['one'] = "This is one"
dict[2] = "This is two"
tinydict = {'name': 'john', 'code': 6734, 'dept': 'sales'}
print dict
print dict['one'] # 输出键为'one' 的值
print dict[2] # 输出键为 2 的值
print tinydict # 输出完整的字典
print tinydict.keys() # 输出所有键
print tinydict.values() # 输出所有值
{2: 'This is two', 'one': 'This is one'}
This is one
This is two
{'dept': 'sales', 'code': 6734, 'name': 'john'}
['dept', 'code', 'name']
['sales', 6734, 'john']
- Python数据类型转换
1.字典转字符串
# -*- coding: UTF-8 -*-
a = {"name": "maqi","age": "18"};
b = str(a)
print b
2.字符串转字典
# -*- coding: UTF-8 -*-
a = "{'name' : 'jim', 'sex' : 'male', 'age': 18}"
b = eval(a)
print b["name"]
2.条件语句
Python程序语言指定任何非0和非空(null)值为true,0 或者 null为false。
3.循环语句
- while循环
1.while 语句时还有另外两个重要的命令 continue,break 来跳过循环,continue 用于跳过该次循环,break 则是用于退出循环,此外"判断条件"还可以是个常值,表示循环必定成立,具体用法如下:
i = 1
while i < 10:
i += 1
if i%2 > 0: # 非双数时跳过输出
continue
print i # 输出双数2、4、6、8、10
i = 1
while 1: # 循环条件为1必定成立
print i # 输出1~10
i += 1
if i > 10: # 当i大于10时跳出循环
break
2.while … else
count = 0
while count < 5:
print count, " is less than 5"
count = count + 1
else:
print count, " is not less than 5"
0 is less than 5
1 is less than 5
2 is less than 5
3 is less than 5
4 is less than 5
5 is not less than 5
- for循环
1.语法格式
for letter in 'Python': # 第一个实例
print '当前字母 :', letter
fruits = ['banana', 'apple', 'mango']
for fruit in fruits: # 第二个实例
print '当前水果 :', fruit
print "Good bye!"
当前字母 : P
当前字母 : y
当前字母 : t
当前字母 : h
当前字母 : o
当前字母 : n
当前水果 : banana
当前水果 : apple
当前水果 : mango
Good bye!
2.通过序列索引迭代
fruits = ['banana', 'apple', 'mango']
for index in range(len(fruits)):
print '当前水果 :', fruits[index]
print "Good bye!"
当前水果 : banana
当前水果 : apple
当前水果 : mango
Good bye!
3.循环使用 else 语句
在 python 中,for … else 表示这样的意思,for 中的语句和普通的没有区别,else 中的语句会在循环正常执行完(即 for 不是通过 break 跳出而中断的)的情况下执行,while … else 也是一样。
for num in range(10,20): # 迭代 10 到 20 之间的数字
for i in range(2,num): # 根据因子迭代
if num%i == 0: # 确定第一个因子
j=num/i # 计算第二个因子
print '%d 等于 %d * %d' % (num,i,j)
break # 跳出当前循环
else: # 循环的 else 部分
print num, '是一个质数'
10 等于 2 * 5
11 是一个质数
12 等于 2 * 6
13 是一个质数
14 等于 2 * 7
15 等于 3 * 5
16 等于 2 * 8
17 是一个质数
18 等于 2 * 9
19 是一个质数
4.字符串
- 字符串格式化
print "My name is %s and weight is %d kg!,My school is %s" % ('Zara', 21 ,'seu')
5.列表(List)
- 添加
1.append:一个对象参数
# -*- coding: UTF-8 -*-
aList = [123, 'xyz', 'zara', 'abc'];
aList.append( 2009 );
print "Updated List : ", aList;
Updated List : [123, 'xyz', 'zara', 'abc', 2009]
# -*- coding: UTF-8 -*-
aList = [123, 'xyz', 'zara', 'abc'];
aList.append([2009]);
print "Updated List : ", aList;
Updated List : [123, 'xyz', 'zara', 'abc', [2009]]
2.extend 和 + : 一个列表参数
# -*- coding: UTF-8 -*-
aList = [123, 'xyz', 'zara', 'abc'];
bList = [456,'qqq'];
aList.extend(bList);#返回值为None,数组加在aList中
cList = aList + bList ;#返回一个新的变量
print "aList : ", aList;
print "cList : ", cList;
aList : [123, 'xyz', 'zara', 'abc', 456, 'qqq']
cList : [123, 'xyz', 'zara', 'abc', 456, 'qqq', 456, 'qqq']
- 插入一个元素
#!/usr/bin/python
aList = [123, 'xyz', 'zara', 'abc']
aList.insert( 3, 2009)
print "Final List : ", aList
Final List : [123, 'xyz', 'zara', 2009, 'abc']
- 删除列表元素
# -*- coding: UTF-8 -*-
list1 = ['physics', 'chemistry', 1997, 2000];
del list1[2];
print "After: ",list1;
After: ['physics', 'chemistry', 2000]
- 反转
aList = [123, 'xyz', 'zara', 'abc', 'xyz'];
aList.reverse();
print "List : ", aList;
List : ['xyz', 'abc', 'zara', 'xyz', 123]
- 排序
1.sort()
# -*- coding: UTF-8 -*-
x = [4, 6, 2, 1, 7, 9]
x.sort()
print x # [1, 2, 4, 6, 7, 9]
2.sorted():返回一个有序的副本,并且类型总是列表
# -*- coding: UTF-8 -*-
x = [4, 6, 2, 1, 7, 9]
y = sorted(x);
print y
[1, 2, 4, 6, 7, 9]
print sorted('Python')
['P', 'h', 'n', 'o', 't', 'y']
3.降序排序
y = [3, 2, 8 ,0 , 1]
y.sort(reverse = True)
print y #[8, 3, 2, 1, 0]
4.参数
x = ['mmm', 'mm', 'mm', 'm' ]
x.sort(key = len)
print x # ['m', 'mm', 'mm', 'mmm']
5.自定义函数
# -*- coding: UTF-8 -*-
def comp(x, y):
if x < y:
return 1
elif x > y:
return -1
else:
return 0
nums = [3, 2, 8, 0, 1]
nums.sort(comp)
print nums # 降序排序[8, 3, 2, 1, 0]
nums.sort(cmp) # 调用内建函数cmp,升序排序,cmp(x,y) 函数用于比较2个对象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1。
print nums # 降序排序[0, 1, 2, 3, 8]
- 拷贝
# -*- coding: UTF-8 -*-
aList = [123, 'xyz', 'zara', 'abc', 'xyz'];
bList = aList[ : ];
print "aList : ", aList;
print "bList : ", bList;
aList : [123, 'xyz', 'zara', 'abc', 'xyz']
bList : [123, 'xyz', 'zara', 'abc', 'xyz']
6.字典
- str: 把字典转化为字符串:
# -*- coding: UTF-8 -*-
dict = {'Name': 'Zara', 'Age': 7};
print "Equivalent String : %s" % str (dict)
Equivalent String : {'Age': 7, 'Name': 'Zara'}
- 根据key返回value
dict = {'Name': 'Zara', 'Age': 27}
print "Value : %s" % dict.get('Age')
print "Value : %s" % dict.get('Sex', "Never")
Value : 27
Value : Never
- has_key()
dict = {'Name': 'Zara', 'Age': 7}
print "Value : %s" % dict.has_key('Age')
print "Value : %s" % dict.has_key('Sex')
Value : True
Value : False
- 增加键值对
dict = {'Name': 'Zara', 'Age': 7}
dict["sex"] = "male"
print dict
2.update方法
dict = {'Name': 'Zara', 'Age': 7}
dict2 = {'Sex': 'female','Home':'SuZhou' }
dict.update(dict2)
print "Value : %s" % dict
Value : {'Home': 'SuZhou', 'Age': 7, 'Name': 'Zara', 'Sex': 'female'}
7.日期和时间
- 获取时间戳
1.获取当前时间戳---time.time()
# -*- coding: UTF-8 -*-
import time; # 引入time模块
ticks = time.time()
print "当前时间戳为:", ticks
当前时间戳为: 1495792062.39
2.把元组转化为时间戳--- time.mktime()
# -*- coding: UTF-8 -*-
import time
t = (2009, 2, 17, 17, 3, 38, 1, 48, 0)
secs = time.mktime( t )
print "time.mktime(t) : %f" % secs
print "asctime(localtime(secs)): %s" % time.asctime(time.localtime(secs))
time.mktime(t) : 1234861418.000000
asctime(localtime(secs)): Tue Feb 17 17:03:38 2009
- 获取当前时间---time.localtime()
# -*- coding: UTF-8 -*-
import time
localtime = time.localtime(time.time())
print "本地时间为 :", localtime
print "本地时间为 :", localtime[0]
本地时间为 : time.struct_time(tm_year=2017, tm_mon=5, tm_mday=26, tm_hour=17, tm_min=50, tm_sec=7, tm_wday=4, tm_yday=146, tm_isdst=0)
本地时间为 : 2017
- 获取格式化的时间字符串---time.asctime()
# -*- coding: UTF-8 -*-
import time
localtime = time.asctime( time.localtime(time.time()) )
print "本地时间为 :", localtime
本地时间为 : Fri May 26 18:04:28 2017
- 格式化日期---time.strftime()
import time
print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print time.strftime("%a %b %d %H:%M:%S %Y", time.localtime())
2017-05-26 18:33:03
Fri May 26 18:33:03 2017
- 根据字符串得到时间元组
# -*- coding: UTF-8 -*-
import time
a = "Sat Mar 28 22:24:24 2016"
print time.strptime(a, "%a %b %d %H:%M:%S %Y") #根据字符串得到
time.struct_time(tm_year=2016, tm_mon=3, tm_mday=28, tm_hour=22, tm_min=24, tm_sec=24, tm_wday=5, tm_yday=88, tm_isdst=-1)
- 根据时间戳得到时间元组
# -*- coding: UTF-8 -*-
import time
print "time.gmtime() : %s" % time.gmtime(1234861418.000000)
time.gmtime() : time.struct_time(tm_year=2009, tm_mon=2, tm_mday=17, tm_hour=9, tm_min=3, tm_sec=38, tm_wday=1, tm_yday=48, tm_isdst=0)
8.函数
- 不定长参数
# -*- coding: UTF-8 -*-
def printinfo(arg1, *vartuple):
"打印任何传入的参数"
print "输出: "
print arg1
for var in vartuple:
print var
return;
# 调用printinfo 函数
printinfo(10);
printinfo(70, 60, 50);
输出:
10
输出:
70
60
50
- 匿名函数---lambda
# -*- coding: UTF-8 -*-
sum = lambda arg1, arg2: arg1 + arg2;
# 调用sum函数
print "相加后的值为 : ", sum(10, 20)
print "相加后的值为 : ", sum(20, 20)
9.文件I/O
- 读取键盘输入
input接受表达式进行计算,而raw_input输入什么就返回什么
1.raw_input函数
str = raw_input("请输入:")
print "您输入的内容:", str
请输入:
123
2.input
# -*- coding: UTF-8 -*-
str = input("请输入:");
print "你输入的内容是: ", str
2+5
7
- 打开文件
# -*- coding: UTF-8 -*-
file = open("file.txt", "r+")
print "文件名:", file.name
print "是否已经关闭:",file.closed
print "访问模式:",file.mode
print "末尾是否强制加空格",file.softspace
文件名: file.txt
是否已经关闭: False
访问模式: r+
末尾是否强制加空格 0
- 读写文件
# -*- coding: UTF-8 -*-
file = open("file.txt", "r+")
file.write("www.site.com")
file.close()
file = open("file.txt", "r+")
str = file.read()
print "文件内容为",str
file.close()
- 文件定位
1.tell():下一次的读写会发生在文件开头这么多字节之后
2.seek(offset [,from]):改变当前文件的位置。Offset变量表示要移动的字节数。From变量指定开始移动字节的参考位置。
file = open("file.txt", "r+")
str = file.read()
print "文件内容为",str
position = file.tell()
print "当前文件位置",position
position = file.seek(0,0)
str = file.read()
print "重新读取的文件:",str
file.close()
文件内容为 www.site.com
当前文件位置 12
重新读取的文件: www.site.com
- 重命名和删除文件
# -*- coding: UTF-8 -*-
import os
os.rename("file.txt","word.txt")
os.remove("word.txt")