我試圖替換文件中的第一個字符,以便最終得到其中的1
或0
。這裏是我的代碼:替換文件Python 2.7中的第一個字符
import os
hostName = raw_input("IP: ")
communicate = open("communicate.txt", "w")
while True:
response = os.system("ping " + hostName + " -c 1")
if response == 0:
# Replace first character with '1'
else:
# Replace first character with '0'
我正在通過終端在Linux虛擬機中運行代碼。
用'「w」'打開文件後,它已被覆蓋。 –
'communications.txt'文件是否爲空?如果不是,你想保留它的內容(除了第一個字符)? –