标签:number res syn 父类 构造函数 nta error: 字符串操作 引号
Number(数字),序列:String(字符串)、List(列表)、Tuple(元组),Set(集合)、Dictionary(字典)
int(长整型)、float(浮点型)、bool(布尔型)、complex(复数)
int:a = 10。(python2中使用long表示长整型)
bool:a = True;b = False。True的值为1,False的值为0.(python2中没有True、False,用1表示真,0表示假)
complex:4+3j或者complex(4, 3)
type(变量名),isinstance(变量名, 变量类型)
>>> a = 10; b = 3.14; c = True; d = 4+3j
>>> print(type(a), type(b), type(c), type(d))
<class ‘int‘> <class ‘float‘> <class ‘bool‘> <class ‘complex‘>
>>> print(isinstance(a, int), isinstance(b, float), isinstance(c, bool), isinstance(d, complex))
True True True True
type不会认为子类是一种父类类型,isinstance认为子类是一种父类类型
>>> class A:
pass
>>> class B(A):
pass
>>> print(type(B()) == A, type(B()) == B)
False True
>>> print(isinstance(B(), A), isinstance(B(), B))
True True
加(+)、减(-)、乘(*)、除(/):返回一个浮点数、除(//):返回一个整数,向下圆整、求余(%)、乘方(**)
>>> type(4/2)
<class ‘float‘>
>>> type(3/2)
<class ‘float‘>
>>> type(3//2)
<class ‘int‘>
>>> 5%2
1
>>> 2**3
8
字符串内容使用单引号‘或者双引号"括起来,使用反斜杠‘\‘转义特殊字符。
>>> a = ‘hello world‘; b = "hello world"; c = ‘D:\\test\\test‘
>>> print(a, b, c)
hello world hello world D:\test\test
索引、截取、复制、拼接
从左往右:索引值(下标)从0开始,从右往左:索引值(下标)从-1开始。
>>> a = ‘hello world‘
>>> print(a[0], a[10], a[-1], a[-11])
h d d h
使用方法:变量名[[左下标]:[右下标]:[步长]],不截取右下标对应的字符
>>> a = ‘hello world‘
>>> a[0:4]
‘hell‘
>>> a[0:]
‘hello world‘
>>> a[-11:]
‘hello world‘
>>> a[:4]
‘hell‘
>>> a[-4:-1]
‘orl‘
>>> a[-4:]
‘orld‘
>>> a[:-1]
‘hello worl‘
使用步长:
>>> a[0:4:2]
‘hl‘
>>> a[0:5:2]
‘hlo‘
>>> a[0::2]
‘hlowrd‘
>>> a[0::3]
‘hlwl‘
>>> a[:-1:2]
‘hlowr‘
>>> a[:-1:3]
‘hlwl‘
反转字符串:
>>> a[-1::-1]
‘dlrow olleh‘
>>> a = ‘hello world ‘
>>> print(a * 3)
hello world hello world hello world
>>> print(a + a + a)
hello world hello world hello world
字符串内容不可变,字符串中的字符可重复,有序
>>> a = ‘hello world‘
>>> a[1] = ‘a‘
Traceback (most recent call last):
File "<pyshell#53>", line 1, in <module>
a[1] = ‘a‘
TypeError: ‘str‘ object does not support item assignment
使用方括号"[]"将元素括起来,元素之间用逗号‘,‘分割,元素类型可以不同,内容可以是数字、字符串、列表、元组、集合、字典。
>>> lst = [1, "hello", [2, 3], (4, 5), {‘Tom‘, ‘Jack‘}, {‘name‘:‘Tom‘, ‘age‘:20}]
>>> lst
[1, ‘hello‘, [2, 3], (4, 5), {‘Tom‘, ‘Jack‘}, {‘name‘: ‘Tom‘, ‘age‘: 20}]
索引、截取、复制、拼接和字符串操作相同。
元素可变,可重复,有序
使用小括号"()"将元素括起来,元素之间用逗号‘,‘分割,元素类型可以不同,内容可以是数字、字符串、列表、元组、集合、字典。
>>> tup = (1, "hello", [2, 3], (4, 5), {‘Tom‘, ‘Jack‘}, {‘name‘:‘Tom‘, ‘age‘:20})
>>> tup
(1, ‘hello‘, [2, 3], (4, 5), {‘Tom‘, ‘Jack‘}, {‘name‘: ‘Tom‘, ‘age‘: 20})
索引、截取、复制、拼接和字符串操作相同。
>>> tup = ()
>>> type(tup)
<class ‘tuple‘>
>>> tup = (1)
>>> type(tup)
<class ‘int‘>
>>> tup = (1,)
>>> type(tup)
<class ‘tuple‘>
元素不可变,可重复,有序
使用大括号“{}”或者set(iterable)创建集合,使用大括号创建时,元素之间用逗号“,”隔开,元素类型可以不同,内容可以是数字、字符串、列表、元组、集合、字典。使用set()创建时,必须使用序列。
>>> student = {‘Tom‘, ‘Jim‘, ‘Mary‘, ‘Tom‘, ‘Jack‘, ‘Rose‘}
>>> student
{‘Jim‘, ‘Rose‘, ‘Tom‘, ‘Jack‘, ‘Mary‘}
>>> set(‘Tom‘)
{‘T‘, ‘o‘, ‘m‘}
>>> set([1, 2, 3, 4])
{1, 2, 3, 4}
成员测试、集合运算、创建空集合
>>> if ‘Tom‘ in student:
print(‘Tom 在集合中‘)
else:
print(‘Tom 不在集合中‘)
Tom 在集合中
交集、并集、差集、对称差
>>> a = set(‘abcd‘)
>>> b = set(‘bdef‘)
>>> a
{‘d‘, ‘a‘, ‘b‘, ‘c‘}
>>> b
{‘e‘, ‘d‘, ‘b‘, ‘f‘}
>>> a | b
{‘a‘, ‘d‘, ‘c‘, ‘f‘, ‘b‘, ‘e‘}
>>> a & b
{‘d‘, ‘b‘}
>>> a - b
{‘a‘, ‘c‘}
>>> b - a
{‘e‘, ‘f‘}
>>> a ^ b
{‘a‘, ‘c‘, ‘f‘, ‘e‘}
使用set(),不能使用大括号,因为大括号时创建空字典。
元素可变、不可重复、无序
使用大括号“{}”或者构造函数dict()创建字典,字典由键值对组成,key时唯一的,必须是不可变的数据类型。
>>> d = {1: ‘one‘, 2: ‘two‘, ‘name‘: ‘Tom‘, ‘age‘: 20}
>>> d
{1: ‘one‘, 2: ‘two‘, ‘name‘: ‘Tom‘, ‘age‘: 20}
>>> dict([(1, ‘one‘), (2, ‘two‘), (3, ‘three‘)])
{1: ‘one‘, 2: ‘two‘, 3: ‘three‘}
>>> dict(1=one, 2=two, 3=three)
SyntaxError: keyword can‘t be an expression
>>> dict(one=1, two=2, three=3)
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
获取某个键对应的值,获取所有键,获取所有值,创建空字典
>>> d = {1: ‘one‘, 2: ‘two‘, ‘name‘: ‘Tom‘, ‘age‘: 20}
>>> d
{1: ‘one‘, 2: ‘two‘, ‘name‘: ‘Tom‘, ‘age‘: 20}
>>> d[1]
‘one‘
>>> d[‘name‘]
‘Tom‘
>>> d.keys()
dict_keys([1, 2, ‘name‘, ‘age‘])
>>> d.values()
dict_values([‘one‘, ‘two‘, ‘Tom‘, 20])
>>> d = {}
>>> type(d)
<class ‘dict‘>
元素可变、不可重复、无序
标签:number res syn 父类 构造函数 nta error: 字符串操作 引号
原文地址:https://www.cnblogs.com/wbz-blogs/p/11116443.html