挖数据搞机器

Python_0_Datatype

2018-08-13  本文已影响0人  ToM华托福票圈最低

6 Main DataType:

Number(数字)/ String(字符串)/ List(列表)/ Tuple(元组)/ Set(集合)/ Dictionary(字典)
Cannot Change: Number, String, Tuple
Can Change: String, List, Set
Seq: String, Tuple


Fuxs for Datatype:

  1. type() :print the type of data 不认为子类是父类的类型
  2. isinstance() : print the type of data 认为子类是父类的类型

Number:

Type: int、float、bool、complex

int(x) ; float(x); complex(x); complex(x,y); 

Ex:

del(var)  #delete var
5 + 4  # 加法
4.3 - 2 # 减法
 3 * 7  # 乘法
 2 / 4  # 除法,得到一个浮点数
 2 // 4  # 除法,得到一个整数
 17 % 3 # 取余 
 2 ** 5 # 乘方

String:

Ex:

str = 'Runoob'
 
print (str)          # 输出字符串
print (str[0:-1])    # 输出第一个到倒数第二个的所有字符
print (str[0])       # 输出字符串第一个字符
print (str[2:5])     # 输出从第三个开始到第五个的字符
print (str[2:])      # 输出从第三个开始的后的所有字符
print (str * 2)      # 输出字符串两次
print (str + "TEST") # 连接字符串

List:

Use "[ ]", the elements in list can be edited

Ex:

list = [ 'abcd', 786 , 2.23, 'runoob', 70.2 ]
tinylist = [123, 'runoob']
 
print (list)            # 输出完整列表
print (list[0])         # 输出列表第一个元素
print (list[1:3])       # 从第二个开始输出到第三个元素
print (list[2:])        # 输出从第三个元素开始的所有元素
print (tinylist * 2)    # 输出两次列表
print (list + tinylist) # 连接列表

Tuple:

Use "()", the elements in tuple cannot be edited

Ex:

tuple = ( 'abcd', 786 , 2.23, 'runoob', 70.2  )
tinytuple = (123, 'runoob')
 
print (tuple)             # 输出完整元组
print (tuple[0])          # 输出元组的第一个元素
print (tuple[1:3])        # 输出从第二个元素开始到第三个元素
print (tuple[2:])         # 输出从第三个元素开始的所有元素
print (tinytuple * 2)     # 输出两次元组
print (tuple + tinytuple) # 连接元组

Set:

A Seq without order

Ex:

student = {'Tom', 'Jim', 'Mary', 'Tom', 'Jack', 'Rose'}
print(student)   # 输出集合,重复的元素被自动去掉
# 成员测试
if 'Rose' in student :
    print('Rose 在集合中')
else :
    print('Rose 不在集合中')
 
# set可以进行集合运算
a = set('abracadabra')
b = set('alacazam') 
print(a) 
print(a - b)     # a和b的差集 
print(a | b)     # a和b的并集 
print(a & b)     # a和b的交集 
print(a ^ b)     # a和b中不同时存在的元素

Dictionary:

List without order, use "key"(键) to save value

Ex:

ict = {}
dict['one'] = "1 - 菜鸟教程"
dict[2]     = "2 - 菜鸟工具"
 
tinydict = {'name': 'runoob','code':1, 'site': 'www.runoob.com'}
  
print (dict['one'])       # 输出键为 'one' 的值
print (dict[2])           # 输出键为 2 的值
print (tinydict)          # 输出完整的字典
print (tinydict.keys())   # 输出所有键
print (tinydict.values()) # 输出所有值

Others:

转义字符:
字符串格式化: %
字符串内建函数:

详细见菜鸟教程

上一篇下一篇

猜你喜欢

热点阅读