python怎么取固定格式文件,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

程序文件:
def open_file(filename, mode='r'): """ :param filename: :param mode: :return: 返回文件句柄 """ try: the_file = open(filename, mode) except IOError: print "Unable to open the file", filename sys.exit(0) else: return the_file def next_line(the_file): """ :param the_file: :return: 讀取一行文件內(nèi)容 """ line = the_file.readline() return line def next_block(the_file): """ :param the_file: :return: 讀取指定格式的一段內(nèi)容 """ title = next_line(the_file) # cg = next_line(the_file) content = [] for i in range(3): #3為文件內(nèi)容的行數(shù) content.append(next_line(the_file)) return title, content my_file = open_file('1.txt', 'r') a = raw_input("enter you name: ") #可以在函數(shù)中以變量來(lái)調(diào)用,這里僅做測(cè)試用 for i in range(3): #3為格式內(nèi)容的段數(shù) tit = next_block(my_file) if a == tit[0].strip('\n'): print "TITLE IS :", tit[0] for j in range(3): print "content ", (j+1), "is: ", tit[1][j].strip('\n') break else: print 'no this title' exit(0)這樣,對(duì)于我的數(shù)據(jù)庫(kù)配置信息就很好根據(jù)需要來(lái)進(jìn)行獲取了,只需要將title放進(jìn)python程序就可以去處對(duì)應(yīng)的數(shù)據(jù)庫(kù)連接信息
[test]
user:root
password:123456
db_name:study
host:127.0.0.1
port:3306
charset:utf8
[mysql]
user:root
password:123456
db_name:wwwsite
host:127.0.0.1
port:3306
charset:utf8
看完上述內(nèi)容,你們掌握python怎么取固定格式文件的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
標(biāo)題名稱:python怎么取固定格式文件-創(chuàng)新互聯(lián)
標(biāo)題路徑:http://chinadenli.net/article20/cojdjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、虛擬主機(jī)、App設(shè)計(jì)、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站營(yíng)銷、營(yíng)銷型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容