這篇文章帶給大家的內容是介紹python有哪些基本資料類型有哪些,有一定的參考價值,有需要的朋友可以參考一下,希望對你們有所助。
1、python的一切都是對象,對像是包含屬性和方法的一個整體。
2、資料類型的組成:身分(記憶體位址,透過id方法看它的唯一識別碼);型別(透過type方法檢視);值(資料項目)
#3 、常用基本資料型別
int 整數型
bool 布林
strintg 字串
list 清單
tuple 元組
dict 字典
可變類型:list,dict
5、 轉義字元
#转义字符 print('abcd\nef')#\为转义字符 print(r'abcd\nef')#字符串前面加r表示不转义 运行结果: abcd ef abcd\nef
6、切片
rrreee7、字串替換
a = "abcde" b = a[-1] #访问最后一个元素 c = a[0:4]#访问序列在0到4之间的元素不包括4 print(b) print(c) 运行结果: e abcd
8.字串拼接a = "abcd"
print(a[0])
b = a.replace('d','def')
print(b)
print(a.find('d'))#字符串查询
运行结果:
a
abcdef
3
9、檔案操作:'r'-read; 'w'-write;'a'-append(在最後新增)#【1】直接相加
a = 'my name is xiaobin'
b = 'tong'
c = a + b
print(c)
运行结果:
my name is xiaobintong
#【2】占位符
print('my name is %s xiaobin' % 'tong')#%s为字符串占位符,%d为数字占位符
print('my name is %s xiaobin,i\'m %s years old' % ('tong',24))
print('my name is {1}, i\'m {0} years old'.format('24','tongxiaobin'))#用format方法
运行结果:
my name is tong xiaobin
my name is tong xiaobin,i'm 24 years old
my name is tongxiaobin, i'm 24 years old
#【3】join
a = '123'
b = '456'
c = '789'
d = ''.join([a,b,c])
e = ';'.join([a,b,c])
print(d)
print(e)
运行结果:
123456789
123;456;789
10、linecache模組#写操作
d = open('1.txt','w')
d.write('hello world\nmy name is tongxiaobin')
d.close()
#读操作
e = open('1.txt','r')
print(e.readline())#按行读取
print(e.readline())
运行结果:
hello world
my name is tongxiaobin
#末尾添加操作
a = open('1.txt','a')
a.write('\ncome from anhui')
a.close()
打开文件结果为:
hello world
my name is tongxiaobinfdsd
come from anhui
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。更多相關影片教學請造訪:
Python影片教學
以上是python的基本資料型別有哪些?的詳細內容。更多資訊請關注PHP中文網其他相關文章!