#coding: utf-8
import
ref = open(r'
c:\users\17656\desktop\暑假\py\去首字(檔案版).txt
', encoding='
utf-8')
newarr=
for x in
f: new_x=x[1:]
(new_x) #
newstr1 = x.replace(x[0] + ' ', ' ') # 去掉第乙個
#print(newstr1)
#newstr2=x.replace(newstr1[0] + ' ', ' ')##
f.close()
上面是去掉第乙個字。
open函式會將路徑中的\當做轉義字元處理,故加r
下面是加數字**
#coding: utf-8 #設定編碼
import
reinfile = open('
1.txt
', encoding='
utf-8
') #
讀取檔案(蒙語文字utf-8編碼)
#infile = open('1.txt','r') #讀取檔案(正常中文編碼格式)
lines =infile.readlines()
for x in
infile:
(x)infile.close()
數字從0開始
因多行文字複製粘連只能夠輸入第一行內容,沒有比較滿意的方法解決,所以選擇檔案操作
「不簡單的」刪除幾個字元
需要知道最少需要刪除幾個字元是的有連續四個字元是 tongji 輸入描述 多組資料 每組資料報含乙個字串 1 n 100000 輸出描述 輸出乙個整數表示最少需要刪除的字元數,若不存在則輸出 1 示例1輸入 tongji ijgnot ttoonnggjjii輸出0 14 include inclu...
TCP 幾個字段含義
1 tcp out of order tcp有問題 2 tcp segment of a reassembled pdu 3 tcp previous segment lost tcp先前的分片丟失 4 tcp acked lost segment tcp應答丟失 5 tcp window upda...
double佔幾個位元組
16位編譯器 char 1個位元組 char 即指標變數 2個位元組 short int 2個位元組 int 2個位元組 unsigned int 2個位元組 float 4個位元組 double 8個位元組 long 4個位元組 long long 8個位元組 unsigned long 4個位元...