Python中read和readlines區別

2021-10-03 07:00:17 字數 881 閱讀 4745

1.首先看read

dir

=r"g:\資料集\celeba\celeba(分卷形式,一起解壓)\celeba\anno\list_bbox_celeba.txt"

file

=open

(dir

)print

(file

.read())

print

(type

(file

.read())

)

輸出為

輸出所有的內容,格式型別是str

2.再看readlines

dir

=r"g:\資料集\celeba\celeba(分卷形式,一起解壓)\celeba\anno\list_bbox_celeba.txt"

file

=open

(dir

)# print(file.read())

# print(type(file.read()))

print

(file

.readlines())

print

(type

(file

.readlines())

)

輸出為

是乙個list,裡面放的是乙個乙個的內容

Python中read和write用法

讀操作有read readline和readlines函式 看示例 f open 1.txt r data f.read 讀出所有的內容 print data f.close 結果 i m ok i m fine hello world f open 1.txt r data f.readline ...

FileInputStream中的read 方法

首先這是我自己寫 的時候遇到的乙個問題,我思來想去,終於想通透了,所以想分享給大家,當然這也是乙個非常簡單的問題,大神勿噴。public class io inputstream public static void main string args 但是列印結果就是 246,隔乙個列印乙個,我感到...

shell script中read的用法

1 read基本讀取 bin bash testing the read command echo n enter you name echo n 讓使用者直接在後面輸入 read name 輸入的多個文字將儲存在乙個變數中 echo hello name,welcome to my progra ...