版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
Python語言程序設計【字符串的寫法】PythonLanguageProgramming[Stringwriting]在Python中字符串可以用單引號('')和雙引號("")標識,對于跨行的字符串可以用“三引號”(三個單引號'''或三個雙引號""")標識。知識點【字符串的寫法】12str1='HelloWorld!'
str2="Derisweng"【例】用單引號('')和雙引號("")創(chuàng)建字符串12345str3="""
這是一個多行字符串的例子
使用制表符TAB(\t),也可以使用換行符\n
進行換行
"""
print(str3)【例】用三引號創(chuàng)建字符串這是一個多行字符串的例子使用制表符TAB( ),也可以使用換行符進行換行輸出結果:InPython,stringscanbeidentifiedwithsinglequotationmarks('')anddoublequotationmarks(""),andcrosslinestringscanbeidentifiedwith"threequotationmarks"(threesinglequotationmarks''orthreedoublequotationmarks"").KnowledgePoints[Stringwriting]12str1='HelloWorld!'
str2="Derisweng"[Example]Creatingstringswithsinglequotes('')anddoublequotes("")12345str3="""
Thisisanexampleofamulti-linestring
UsetabTAB(t),orusenewlinenfornewline
"""
print(str3)[Example]CreatingastringwithtriplequotesThisisanexampleofamulti-linestringthatUseTabTAB( ),youcanalsouselinebreaks
PerformlinefeedsOutputresult:三引號具有所見即所得的效果,其典型的應用場景就是當你需要一段HTML或者SQL語句時,如果用字符串組合或者特殊字符串轉義,將會非常麻煩,而使用三引號就非常方便。知識點【字符串的寫法】123456789strHTML="""
<divclass="title-box">
<h2class="title-blog">
<a]accordingto“,”accordingtostring“e”[Example]SeparatestringswithcommasOutputresult:Python語言程序設計【字符串運算符+字符串格式化%】PythonLanguageProgramming[Stringoperators+stringformatting%]運
算
符描
述+字符串連接*字符串倍增[]通過索引獲取字符串中的字符[:]截取字符串中的一部分in如果字符串中包含給定的字符,返回Truenotin如果字符串中不包含給定的字符,返回Truer/R原始字符串:所有的字符串都直接按照字面的意思來使用,沒有轉義特殊或不能打印的字符。原始字符串除在字符串的第一個引號前加上字母“r”(大小寫均可)以外,與普通字符串有著幾乎完全相同的語法%格式字符串知識點【字符串支持的常用運算符】operatorDescription+stringconcatenation*Stringmultiplication[]Getthecharactersinthestringbyindexingthe[:]InterceptsaportionofastringinReturnsTrueifthestringcontainsthegivencharacternotinReturnsTrueifthestringdoesnotcontainthegivencharacterr/ROriginalstring:Allstringsareusedliterallywithoutescapingspecialorunprintablecharacters.Theoriginalstringhasalmostthesamesyntaxastheordinarystring,exceptthattheletter"r"isaddedbeforethefirstquotationmarkofthestring(caseisacceptable)%formatstringKnowledgePoints[CommonOperatorsSupportedbyString]示例12345678910111213141516a="Deris"
b="Weng"
print("a+b輸出結果:",a+b)
print("a*2輸出結果:",a*2)
print("a[1]輸出結果:",a[1])
print("a[1:4]輸出結果:",a[1:4])
if("D"ina):
print("D在字符串a(chǎn)中")
else:
print("D不在字符串a(chǎn)中")
if("W"notina):
print("W不在字符串a(chǎn)中")
else:
print(“W在字符串a(chǎn)中")
print(r'\n')
print(R'\n')【例】字符串常用運算a+b輸出結果:DerisWenga*2輸出結果:DerisDerisa[1]輸出結果:ea[1:4]輸出結果:eriD在字符串a(chǎn)中W不在字符串a(chǎn)中\(zhòng)n\n輸出結果:【字符串支持的常用運算符】Example12345678910111213141516a="Deris"
b="Weng"
print("a+boutputresult:",a+b)
print("a*2Outputresult:",a*2)
print("a[1]Outputresult:",a[1])
print("a[1:4]outputresult:",a[1:4])
if("D"ina):
print("Dinstringa")
else:
print("Disnotinthestringa")
if("W"notina):
print("Wisnotinthestringa")
else:
print("Winstringa")
print(r'\n')
print(R'\n')[Example]CommonoperationsonstringsA+bOutputresult:DerisWengA*2Outputresult:DerisDerisA[1]Outputresult:eA[1:4]Outputresult:eriDinstringaWisnotinthestringa\n\n[CommonOperatorsSupportedbyString]Outputresult:知識點【字符串格式化】-%1print("我叫%s,今年%d歲。"%('DerisWeng',18))【例】字符串格式符%s應用我叫DerisWeng,今年18歲。輸出結果:Python支持格式化字符串的輸出。最基本的用法是將一個值插入一個有字符串格式符
%的字符串中。[StringFormatting]-%1print("Mynameis%s,andI'm%dyearsoldthisyear."%('DerisWeng',18))[Example]Applicationofstringformatter%sMynameisDerisWeng.I'm18yearsold.Pythonsupportsformattedstringoutput.Themostbasicuseistoinsertavalueintoastringwiththestringformattingcharacter%.KnowledgePointsOutputresult:知識點【字符串格式化】-%符
號描
述%c格式化字符及其ASCII碼%s格式化字符串%d格式化整數(shù)%u格式化無符號整型數(shù)%o格式化無符號八進制數(shù)%x格式化無符號十六進制數(shù)%X格式化無符號十六進制數(shù)(大寫)符
號描
述%f格式化浮點數(shù)字,可指定小數(shù)點后的精度%e用科學記數(shù)法格式化浮點數(shù)%E作用同%e,用科學記數(shù)法格式化浮點數(shù)%g%f和%e的簡寫%G%f和%E的簡寫%p用十六進制數(shù)格式化變量的地址[StringFormatting]-%SymbolDescription%cFormattingcharactersandtheirASCIIcodes%sformattingstrings%dformattingintegers%uformattinganunsignedinteger%oformattinganunsignedoctalnumber%xformattinganunsignedhexadecimalnumber%XFormattingunsignedhexadecimalnumbers(uppercase)SymbolDescription%fFormatsfloating-pointnumbers,specifyingtheprecisionafterthedecimalpoint%eformattingfloating-pointnumbersinscientificnotation%ESameas%e,usescientificnotationtoformatfloatingpointnumbers%g%Shortforfand%e%G%Shortforfand%E%pAddressesofvariablesformattedashexadecimalnumbersKnowledgePoints示例12price=108.8528
print("該商品的售價為:%.2f"%price)【例】字符串格式符%f應用該商品的售價為:108.85輸出結果:字符串格式化符號%f可指定小數(shù)點后的精度?!咀址袷交?%Example12price=108.8528
print("Thesellingpriceofthisproductis:%.2f"%price)[Example]Applicationofstringformatter%fThesellingpriceofthisitemis:108.85Thestringformattingsymbol%fspecifiestheprecisionafterthedecimalpoint.[StringFormatting]-%Outputresult:Python語言程序設計【字符串格式化(format函數(shù))】PythonLanguageProgrammingStringFormat(formatfunction)知識點【字符串格式化】-format函數(shù)format()方法中模板字符串的槽除了包括參數(shù)序號,還可以包括格式控制信息。此時,槽的內(nèi)部樣式如下:{<參數(shù)序號>:<格式控制標記>}其中,格式控制標記用來控制參數(shù)顯示時的格式。格式控制標記包括:<填充><對齊><寬度>,<.精度><類型>6個字段,這些字段都是可選的,可以組合使用,這里按照使用方式逐一介紹。KnowledgePointsFormatString-formatfunctionTheslotofthetemplatestringintheformat()methodcanincludenotonlytheparameterserialnumber,butalsotheformatcontrolinformation.Atthistime,theinternalstyleoftheslotisasfollows:{<ParameterSN>:<FormatControlMark>}Theformatcontroltagsareusedtocontroltheformatoftheparameterdisplay.Formatcontroltagsinclude:<fill><alignment><width>,<.Precision><Type>6fields,thesefieldsareoptional,canbeusedincombination,hereinaccordancewiththeuseofthewaytointroduceonebyone.知識點【字符串格式化】-format函數(shù)123456#占位符{},默認順序
print('{}{}'.format('one','two'))
print('我的姓名為{},年齡{}歲,愛好{}'.format('DerisWeng','18','dancing'))
#占位符{},指定順序
print('{1}{0}'.format('one','two'))
print('我的姓名為{0},年齡{1}歲,愛好{2}'.format('DerisWeng','18','dancing'))【例】字符串格式符format函數(shù)應用onetwo我的姓名為DerisWeng,年齡18歲,愛好dancingtwoone我的姓名為DerisWeng,年齡18歲,愛好dancing123456#Placeholders{},defaultorder
print('{}{}'.format('one','two'))
print'Mynameis{},ageis{},hobbyis{}'.format('DerisWeng','18','dancing'))
#Placeholder{},specifyingtheorderinwhichthe
print('{1}{0}'.format('one','two'))
print'Mynameis{0},ageis{1},hobbyis{2}'.format('DerisWeng','18','dancing'))[Example]ApplicationofstringformatterformatfunctiononetwoMynameisDerisWeng.I'm18yearsold.IlikedancingtwooneMynameisDerisWeng.I'm18yearsold.IlikedancingKnowledgePointsFormatString-formatfunction示例【字符串格式化】-format函數(shù)123456789s='DerisWeng'
#默認左對齊,占30個字符
print('{:30}'.format(s))
#默認左對齊,占30個字符,此處逗號表示兩個字符串按順序顯示
print('{:30}'.format(s),'abc')
#右對齊,占30個字符
print('{:>30}'.format(s))
#填充字符為-,^表示以居中方式顯示,所有字符占30個位置
print('{:-^30}'.format(s))【例】字符串格式符format函數(shù)應用DerisWengDerisWengabcDerisWeng----------DerisWeng-----------ExampleFormatString-formatfunction123456789s='DerisWeng'
#Defaultleft-justified,30characters
print('{:30}'.format(s))
#Defaultleft-justified,occupies30characters,herethecommaindicatesthatthetwostringsaredisplayedinorder
print('{:30}'.format(s),'abc')
#Right-aligned,30characters
print('{:>30}'.format(s))
#Filledwith-,^characterstoindicatecentereddisplay,withallcharactersoccupying30positions
print('{:-^30}'.format(s))[Example]ApplicationofstringformatterformatfunctionDerisWengDerisWengabcDerisWeng----------DerisWeng-----------示例【字符串格式化】-format函數(shù)1234567891011s='DerisWeng'
#填充字符為-,>表示以靠右方式顯示,所有字符占20個位置
print('{:->20}'.format(s))
#填充字符為+,<表示以靠左方式顯示,所有字符占20個位置
print('{:+<20}'.format(s))
#填充字符為q,<表示以靠左方式顯示,所有字符占20個位置
print('{:q<20}'.format(s))
#填充字符為1,<表示以靠左方式顯示,所有字符占20個位置
print('{:1<20}'.format(s))
#填充字符為*,>表示以靠右方式顯示,所有字符占20個位置
print('{:*>20}'.format(s))【例】字符串格式符format函數(shù)應用-----------DerisWengDerisWeng+++++++++++DerisWengqqqqqqqqqqqDerisWeng11111111111***********DerisWeng1234567891011s='DerisWeng'
#Filledwith-,>characterstoindicatearight-handeddisplay,withallcharactersoccupying20positions
print('{:->20}'.format(s))
#Filledwith+,<characterstoindicatethattheyaredisplayedinaleft-handedmanner,withallcharactersoccupying20positions
print('{:+<20}'.format(s))
#Thefillingcharacterisq,<indicatesthatitisdisplayedontheleft,andallcharactersoccupy20positions
print('{:q<20}'.format(s))
#Fillcharacteris1,<meansdisplayinleft-handedmode,allcharactersoccupy20positions
print('{:1<20}'.format(s))
#Filledcharacters*,>indicatethattheyaredisplayedinaright-handedmanner,withallcharactersoccupying20positions
print('{:*>20}'.format(s))[Example]Applicationofstringformatterformatfunction-----------DerisWengDerisWeng+++++++++++DerisWengqqqqqqqqqqqDerisWeng11111111111***********DerisWengExampleFormatString-formatfunction示例【字符串格式化】-format函數(shù)12345678910#保留小數(shù)點后兩位
print('{:.2f}'.format(12345678))
#千分位分隔
print('{:,}'.format(12345678))
#0表示format中的索引號index
print('{0:b},{0:c},{0:d},{0:o},{0:x}'.format(42))
#0對應42,1對應50
print('{0:b},{1:c},{0:d},{1:o},{0:x}'.format(42,50))
#默認index為0
print('{:b}'.format(42))【例】字符串格式符format函數(shù)應用12345678.0012,345,678101010,*,42,52,2a101010,2,42,62,2a10101012345678910#Retaintwodecimalplaces
print('{:.2f}'.format(12345678))
#Separatedbythousandths
print('{:,}'.format(12345678))
#0indicatestheindexnumberinformat
print('{0:b},{0:c},{0:d},{0:o},{0:x}'.format(42))
#0for42,1for50#
print('{0:b},{1:c},{0:d},{1:o},{0:x}'.format(42,50))
#Thedefaultindexis0
print('{:b}'.format(42))[Example]Applicationofstringformatterformatfunction12345678.0012,345,678101010,*,42,52,2a101010,2,42,62,2a101010ExampleFormatString-formatfunction12345s='DerisWeng'
#字符串s的最大輸出長度為2
print('{:.2}'.format(s))
#中文
print("{:好<20}".format(s))【例】字符串格式符format函數(shù)應用DeDerisWeng好好好好好好好好好好好示例【字符串格式化】-format函數(shù)12345s='DerisWeng'
#Themaximumoutputlengthofstringsis2
print('{:.2}'.format(s))
#Chinese
print("{:good<20}".format(s))[Example]ApplicationofstringformatterformatfunctionDeDerisWeng,good,good,good,goodExampleFormatString-formatfunction12#:冒號+空白填充+右對齊+固定寬度18+浮點精度.2+浮點數(shù)聲明f
print('{:>18,.2f}'.format(70305084.0))【例】要求對70305084.0進行如下格式化:右對齊(空白填充)+固定寬度18+浮點精度.2+千分位分隔
70,305,084.00輸出結果::>18,.2f千分位、浮點數(shù)、填充字符、對齊的組合使用示例【字符串格式化】-format函數(shù)12#:colon+blankfill+rightalignment+fixedwidth18+floatingpointprecision.2+floatingpointnumberdeclarationf
print('{:>18,.2f}'.format(70305084.0))[Example]Thefollowingformattingisrequiredfor70305084.0.
right-aligned(blank-filled)+fixed-width18+floating-pointprecision.2+thousandthsseparator
70,305,084.00:>18,.2fThecombineduseofthousandths,floating-pointnumbers,paddedcharacters,alignedExampleFormatString-formatfunctionOutputresult:12data=[4,8,15,16,23,42]
print('{d[4]}{d[5]}'.format(d=data))【例】復雜數(shù)據(jù)格式化——列表數(shù)據(jù)2342輸出結果:示例【字符串格式化】-format函數(shù)12data=[4,8,15,16,23,42]
print('{d[4]}{d[5]}'.format(d=data))[Example]ComplexDataFormatting-ListData2342ExampleFormatString-formatfunctionOutputresult:1234classPlant(object):
type='Student'
kinds=[{'name':'Deris'},{'name':'Christopher'}]
print('{p.type}:{p.kinds[0][name]}'.format(p=Plant()))【例】復雜數(shù)據(jù)格式化——字典數(shù)據(jù)Student:Deris輸出結果:示例【字符串格式化】-format函數(shù)1234classPlant(object):
type='Student'
kinds=[{'name':'Deris'},{'name':'Christopher'}]
print('{p.type}:{p.kinds[0][name]}'.format(p=Plant()))[Example]ComplexDataFormatting-DictionaryDataStudent:DerisExampleFormatString-formatfunctionOutputresult:1234data={'first':‘Deris','last':‘Weng','last2':‘Good'}
print('{first}{last}{last2}'.format(**data))
#format(**data)等價于format(first='Deris',last='Weng',last2='Good')【例】通過字典設置參數(shù)DerisWengGood輸出結果:示例【字符串格式化】-format函數(shù)1234data={'first':‘Deris','last':‘Weng','last2':‘Good'}
print('{first}{last}{last2}'.format(**data))
#Format(**data)isequivalenttoformat(first='Deris',last='Weng',last2='Good')[Example]SettingparametersbydictionaryDerisWengGoodExampleFormatString-formatfunctionOutputresult:12my_list=['Python','www.P']
print("網(wǎng)站名:{0[0]},地址{0[1]}".format(my_list))【例】通過列表索引設置參數(shù)網(wǎng)站名:Python,地址www.P輸出結果:示例【字符串格式化】-format函數(shù)print("網(wǎng)站名:{d[0]},地址{d[1]}".format(d=my_list))12my_list=['Python','www.P']
print("Websitename:{0[0]},address:{0[1]}".format(my_list))[Example]SettingparametersbylistindexWebsitename:Python,address:www.Python.comprint("Websitename:{d[0]},address:{d[1]}".format(d=my_list))ExampleFormatString-formatfunctionOutputresult:1print("{}對應的位置是{{0}}".format("Deris"))【例】使用花括號{}
來轉義花括號Deris對應的位置是{0}輸出結果:示例【字符串格式化】-format函數(shù)1print(thecorrespondingpositionof"{}"is{{0}}".format("Deris"))[Example]Usethecurlybraces{}toescapethecurlybracesDeriscorrespondsto{0}ExampleFormatString-formatfunctionOutputresult:123print('{:.{}}'.format('DerisWeng',7))
#等價于
print('{:.7}'.format('DerisWeng'))【例】控制長度的兩種等效做法DerisWeDerisWe輸出結果:示例【字符串格式化】-format函數(shù)123print('{:.{}}'.format('DerisWeng',7))
#Equivalent
print('{:.7}'.format('DerisWeng'))[Example]TwoequivalentmethodsforcontrollinglengthDerisWeDerisWeExampleFormatString-formatfunctionOutputresult:Python語言程序設計65《利用文本文件讀寫存儲游戲過程日志》PythonLanguageProgramming66Readingandwritingstoredgameprocedurelogsusingtextfiles知識要點67利用文本文件讀寫存儲游戲過程日志知識點6文本文件讀寫重要方法有:open、close、read、write、readline、readlines【例】將字符串寫入到文件test.txt中#打開一個文件
f=open(“test.txt","w")
f.write("Python是一個非常好的語言。\n是的,的確非常好!!\n")
#關閉打開的文件f.close()第一個參數(shù)為要打開的文件名。第二個參數(shù)描述文件如何使用的字符。
‘r’以只讀方式打開文件,‘w’打開一個文件,只用于寫(如果存在同名文件則將被刪除),'a'用于追加文件內(nèi)容;所寫的任何數(shù)據(jù)都會被自動增加到末尾.'r+'同時用于讀寫。'r'將是默認值。KnowledgePoints68ReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint6Importantmethodsforreadingandwritingtextfilesare.open、close、read、write、readline、readlines[Example]Writethestringtothefiletest.txt#Openafile
f=open(“test.txt","w")
f.write("Pythonisaverygoodlanguage.\nYes,verygoodindeed!!!!\n")
#Closetheopenfilef.close()Thefirstargumentisthenameofthefiletobeopened.Thesecondparameterdescribeshowthefileusesthecharacters.
'r'Openthefileasread-only,'w'opensafileforwritingonly(ifafilewiththesamenameexists,itwillbedeleted),'a'isusedtoappendfilecontent;Anydatawrittenwillbeautomaticallyaddedtotheend'r+'isalsousedforreadingandwriting.'R'willbethedefaultvalue.知識要點69考一考提問環(huán)節(jié)、答題有加分、要記筆記哦!問題1:open(filename,‘w’),這里的w是什么意思?W代表寫的方式w“只寫”方式每次寫都是以覆蓋的方式,文件之前的內(nèi)容將會被覆蓋;a“添加”方式則是在文件原有內(nèi)容的基礎上添加,并不會覆蓋原有內(nèi)容,所寫的任何數(shù)據(jù)都會被自動增加到文件的末尾。問題2:open(filename,‘a(chǎn)’)中a與w的區(qū)別?KnowledgePoints70TakeatestQuestionandanswersessions,bonuspointsforansweringquestions,andtakingnotes!Question1:open(filename,'w'),whatdoeswmeanhere?WstandsforthewayofwritingW"Writeonly"modeEverywriteisoverwritten,andthecontentsbeforethefilewillbeoverwritten;A"Add"meanstoaddonthebasisoftheoriginalcontentofthefilewithoutoverwritingtheoriginalcontent,Anydatawrittenisautomaticallyaddedtotheendofthefile.Question2:Whatisthedifferencebetweenaandwinopen(filename,'a')?知識要點71利用文本文件讀寫存儲游戲過程日志知識點61.f.read()【例】f.read()的使用#打開一個文件
f=open(“test.txt",“r")
str=f.read()print(str)#關閉打開的文件f.close()輸出結果:為了讀取一個文件的內(nèi)容,調(diào)用f.read(size),這將讀取一定數(shù)目的數(shù)據(jù),然后作為字符串或字節(jié)對象返回。Python是一個非常好的語言。是的,的確非常好!!KnowledgePoints721.f.read()[Example]Useoff.read()#Openafile
f=open(“test.txt",“r")
str=f.read()print(str)#Closetheopenfilef.close()Outputresult:Toreadthecontentsofafile,callf.read(size),whichwillreadacertainnumberofdata,Itisthenreturnedasastringorbyteobject.Pythonisaverygoodlanguage.Yes,verygoodindeed!!!!ReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint6知識要點73利用文本文件讀寫存儲游戲過程日志知識點61.f.read()【例】f.read(size)的使用#打開一個文件
f=open(“test.txt",“r")
str=f.read(2)print(str)#關閉打開的文件f.close()輸出結果:為了讀取一個文件的內(nèi)容,調(diào)用f.read(size),這將讀取一定數(shù)目的數(shù)據(jù),然后作為字符串或字節(jié)對象返回。PyKnowledgePoints741.f.read()[Example]Useoff.read(size)#Openafile
f=open(“test.txt",“r")
str=f.read(2)print(str)#Closetheopenfilef.close()Toreadthecontentsofafile,callf.read(size),whichwillreadacertainnumberofdata,Itisthenreturnedasastringorbyteobject.PyReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint6Outputresult:知識要點75利用文本文件讀寫存儲游戲過程日志知識點62.f.readline()【例】f.readline()讀出一行#打開一個文件
f=open(“test.txt",“r")
str=f.readline()print(str)#關閉打開的文件f.close()輸出結果:會從文件中讀取單獨的一行,換行符為’\n’。它每次讀出一行內(nèi)容,占用的內(nèi)存小,比較適合大文件。它返回的也是字符串對象。Python是一個非常好的語言。KnowledgePoints762.f.readline()[Example]f.readline()readsaline#Openafile
f=open(“test.txt",“r")
str=f.readline()print(str)#Closetheopenfilef.close()Aseparatelinewillbereadfromthefile,andthenewlinecharacteris'n'.Itreadsonelineatatime,occupiesasmallamountofmemory,andissuitableforlargefiles.Italsoreturnsastringobject.Pythonisaverygoodlanguage.ReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint6Outputresult:知識要點77利用文本文件讀寫存儲游戲過程日志知識點62.f.readline()【例】f.readline()讀出多行輸出結果:會從文件中讀取單獨的一行,換行符為’\n’。它每次讀出一行內(nèi)容,占用的內(nèi)存小,比較適合大文件。它返回的也是字符串對象。Python是一個非常好的語言。是的,的確非常好!!#打開一個文件
f=open("test.txt","r")
str=f.readline()
whilestr:
print(str,end='')
str=f.readline()
#關閉打開的文件
f.close()KnowledgePoints782.f.readline()[Example]f.readline()readsmultiplelinesPythonisaverygoodlanguage.Yes,verygoodindeed!!!!#Openafile
f=open("test.txt","r")
str=f.readline()
whilestr:
print(str,end='')
str=f.readline()
#Closetheopenfile
f.close()ReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint6Outputresult:Aseparatelinewillbereadfromthefile,andthenewlinecharacteris'n'.Itreadsonelineatatime,occupiesasmallamountofmemory,andissuitableforlargefiles.Italsoreturnsastringobject.知識要點79利用文本文件讀寫存儲游戲過程日志知識點63.f.readlines()【例】f.readlines()讀行輸出結果:f.readlines()將返回該文件包含的所有行。它讀取整個文件的所有行,并將其保存在一個列表變量中,每行作為一個元素。讀取內(nèi)存較大。['Python是一個非常好的語言。\n','是的,的確非常好!!\n']#打開一個文件
f=open("test.txt","r")
str=f.readlines()
print(str)
#關閉打開的文件
f.close()KnowledgePoints803.f.readlines()[Example]f.readlines()readlinef.Readlines()willreturnallthelinescontainedinthefile.Itreadsalllinesoftheentirefileandsavestheminalistvariable,witheachlineasanelement.Thereadmemoryislarge.['Pythonisaverygoodlanguage.n','Yes,verygoodindeed!!n']#Openafile
f=open("test.txt","r")
str=f.readlines()
print(str)
#Closetheopenfile
f.close()ReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint6Outputresult:知識要點81利用文本文件讀寫存儲游戲過程日志知識點63.f.readlines()【例】利用f.readlines()遍歷讀行輸出結果:f.readlines()將返回該文件包含的所有行。它讀取整個文件的所有行,并將其保存在一個列表變量中,每行作為一個元素。讀取內(nèi)存較大。Python是一個非常好的語言。是的,的確非常好!!#打開一個文件
f=open("test.txt","r")
str=f.readlines()
foriinstr:print(i,end='')
#關閉打開的文件
f.close()KnowledgePoints823.f.readlines()[Example]Usef.readlines()totraverseandreadlinesf.Readlines()willreturnallthelinescontainedinthefile.Itreadsalllinesoftheentirefileandsavestheminalistvariable,witheachlineasanelement.Thereadmemoryislarge.Pythonisaverygoodlanguage.Yes,verygoodindeed!!!!#Openafile
f=open("test.txt","r")
str=f.readlines()
foriinstr:print(i,end='')
#Closetheopenfile
f.close()ReadingandwritingstoredgameprocedurelogsusingtextfilesKnowledgepoint
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 暑假實習報告2022
- 六年級上冊心理課教案模板
- 八年級班主任工作心得體會
- 關于四年級上冊數(shù)學說課稿集錦八篇
- 方劑練習題復習測試卷附答案
- 四川省南充市2025屆高三上學期高考適應性考試(一診)物理試題含答案
- 四年級下冊《統(tǒng)計》說課稿
- 中學教師辭職報告
- 產(chǎn)業(yè)園基礎設施項目可行性分析報告
- 中學老師的辭職報告模板10篇
- 小學生心理健康講座PPT
- 總裁辦公室部門職能概述
- 泌尿外科疾病診療規(guī)范
- Python財務應用課后參考答案
- 《樹葉中的比》(說課稿)蘇教版六年級上冊數(shù)學
- 德菲婭定制衣柜導購培訓手冊
- 人文英語3復習資料
- 2023-2024學年云南省昆明市小學語文二年級期末評估測試題附參考答案和詳細解析
- 靜脈輸液新標準
- 機械原理課程設計-自動蓋章機
- 供應室提高腔鏡器械清洗質(zhì)量PDCA案例
評論
0/150
提交評論