Python易混淆知識(持續更新)

readline()

readline() 方法用於從文件讀取整行,包括 “\n” 字符。如果指定了一個非負數的參數,則返回指定大小的字節數,包括 “\n” 字符。

filename = "example.txt"
with open(filename, 'r', encoding='utf-8') as t:
    while True:
        line = t.readline()
        if not line:
            break
        print(len(line))   # 包含'\n'
        print(line + "hello")   # 發生換行
        word = line[:-1]   # 去除最後的'\n',相當於line.strip()
        print(len(word))   # 不包含'\n'
        print(word + "hello")   # 不發生換行

補充:

example.txt內容如下:
你
好
呀,哈哈!
Hello

運行結果如下:
2
你
hello
1
你hello
2
好
hello
1
好hello
6
呀,哈哈!
hello
5
呀,哈哈!hello
6
Hello
hello
5
Hellohello

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章