回覆列表
-
1 # aisha369
-
2 # 勇敢的芒果
import pandas as pd data=pd.read_csv('目錄+檔名') #開啟csv檔案的方式 data=pd.read_excel('目錄+檔名') #開啟xls或xlsx檔案的方式 仿照類似的,pandas還可以開啟一些其他檔案
import pandas as pd data=pd.read_csv('目錄+檔名') #開啟csv檔案的方式 data=pd.read_excel('目錄+檔名') #開啟xls或xlsx檔案的方式 仿照類似的,pandas還可以開啟一些其他檔案
read()方法讀取檔案size個位元組大小。如果讀取命中獲得EOF大小位元組之前,那麼它只能讀取可用的位元組。
語法
以下是read()方法的語法:
fileObject.read( size );
引數
size -- 這是可以從檔案中讀取的位元組數。
返回值
此方法返回讀取字串中的位元組數。
例子
下面的例子顯示了read()方法的使用。
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name
# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line
line = fo.read(10)
print "Read Line: %s" % (line)
# Close opend file
fo.close()
當我們執行上面的程式,它會產生以下結果:
Name of the file: foo.txt
Read Line: This is 1s