Python 是一種流行的編程語言,它不僅能夠操作文本數(shù)據(jù),還能夠處理各種類型的數(shù)據(jù)。在Python 中,有很多操作數(shù)據(jù)的方法,下面將介紹其中的一些。
# 創(chuàng)建列表 fruits = ['apple', 'orange', 'banana'] # 添加元素到列表 fruits.append('pear') # 遍歷列表 for fruit in fruits: print(fruit) # 創(chuàng)建字典 person = {'name': 'John', 'age': 25, 'city': 'New York'} # 獲取字典的值 name = person['name'] # 修改字典的值 person['age'] = 26 # 遍歷字典 for key, value in person.items(): print(key + ': ' + str(value))
在上面的代碼中,我們首先創(chuàng)建了一個列表 fruits,然后使用 fruits.append() 方法向其添加元素,接著我們使用 for 循環(huán)遍歷了該列表。同樣的,我們還創(chuàng)建了一個字典 person,使用 person['name'] 獲取了其值,使用 person['age'] 修改了其值,最后使用了 for 循環(huán)遍歷了該字典。
# 打開文件 file = open('example.txt', 'r') # 讀取文件內(nèi)容 content = file.read() # 關(guān)閉文件 file.close() # 寫入文件 file = open('example.txt', 'w') file.write('Hello world!') file.close()
上面的代碼演示了如何打開、讀取和關(guān)閉一個文本文件,以及如何將內(nèi)容寫入一個文件中。在 Python 中,文件的操作非常方便,并且有很多文件操作相關(guān)的庫。
綜上所述,Python 非常適合處理各種類型的數(shù)據(jù),且提供了豐富的操作數(shù)據(jù)的方法,因此被廣泛應(yīng)用于數(shù)據(jù)分析、機器學(xué)習(xí)等領(lǐng)域中。