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你hello2好
hello
1好hello
6呀,哈哈!
hello
5呀,哈哈!hello
6hello
hello
5hellohello
C 易混淆知識點
c 易混淆知識點 crystal 例項 static void main string args 執行結果為 有了上面的理論基礎,下面就具體分析上面程式為什麼會是那樣的結果 首先m1,m2都是引用型別,當執行m1 m2操作時,比較的是m1與m2在棧內位址的值是否相等,即比較的是引用,因為m1和m2指...
PMP 易混淆知識點
敏感性分析有助於確定哪些風險對專案具有最大的潛在影響。它有助於理解專案目標的變化與各種不確定因素的變化之間存在怎樣的關聯。把所有其他不確定因素固定在基準值,考察每個因素的變化會對目標產生多大程度的影響。敏感性分析的典型表現形式是龍捲風圖。基於單項任務的成本和進度的概率分布,模擬出成百上千種可能結果的...
python知識備忘集合(持續更新)
deque 強化學習的experience replay 模組,之前考慮到執行的速度,我一直用numpy陣列實現,但用起來並不方便,也不簡潔。用deque必然方便多了,但執行速度怎樣?試過才知道。from collections import deque import time d deque ma...