資源描述:
《如何編寫-個簡單程序》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、如何編寫一個簡單的程序這里為大家介紹一下如何開始編寫一個真正的但是簡單程序。程序的概念:下面一段,關(guān)于程序的概念,內(nèi)容來自維基百科:·先閱讀一段英文的:computerprogramandsourcecode,看不懂不要緊,可以跳過去,直接看下一條。Acomputerprogram,orjustaprogram,isasequenceofinstructions,writtentoperformaspecifiedtaskwithacomputer.[1]Acomputerrequiresprogramstofunction,ty
2、picallyexecutingtheprogram'sinstructionsinacentralprocessor.[2]Theprogramhasanexecutableformthatthecomputercanusedirectlytoexecutetheinstructions.Thesameprograminitshuman-readablesourcecodeform,fromwhichexecutableprogramsarederived(e.g.,compiled),enablesaprogrammertos
3、tudyanddevelopitsalgorithms.Acollectionofcomputerprogramsandrelateddataisreferredtoasthesoftware.Computersourcecodeistypicallywrittenbycomputerprogrammers.[3]Sourcecodeiswritteninaprogramminglanguagethatusuallyfollowsoneoftwomainparadigms:imperativeordeclarativeprogra
4、mming.Sourcecodemaybeconvertedintoanexecutablefile(sometimescalledanexecutableprogramorabinary)byacompilerandlaterexecutedbyacentralprocessingunit.Alternatively,computerprogramsmaybeexecutedwiththeaidofaninterpreter,ormaybeembeddeddirectlyintohardware.Computerprograms
5、mayberankedalongfunctionallines:systemsoftwareandapplicationsoftware.Twoormorecomputerprogramsmayrunsimultaneouslyononecomputerfromtheperspectiveoftheuser,thisprocessbeingknownasmultitasking.·計(jì)算機(jī)程序計(jì)算機(jī)程序(ComputerProgram)是指一組指示計(jì)算機(jī)或其他具有信息處理能力裝置每一步動作的指令,通常用某種程序設(shè)計(jì)語言編寫,運(yùn)行于某
6、種目標(biāo)體系結(jié)構(gòu)上。打個比方,一個程序就像一個用漢語(程序設(shè)計(jì)語言)寫下的紅燒肉菜譜(程序),用于指導(dǎo)懂漢語和烹飪手法的人(體系結(jié)構(gòu))來做這個菜。通常,計(jì)算機(jī)程序要經(jīng)過編譯和鏈接而成為一種人們不易看清而計(jì)算機(jī)可解讀的格式,然后運(yùn)行。未經(jīng)編譯就可運(yùn)行的程序,通常稱之為腳本程序(script)。資料程序,簡而言之,就是指令的集合。但是,有的程序需要編譯,有的不需要。Python編寫的程序就不需要,因此她也被稱之為解釋性語言,編程出來的層序被叫做腳本程序。在有的程序員頭腦中,有一種認(rèn)為“編譯型語言比解釋性語言高價(jià)”的認(rèn)識。這是錯誤的。不要
7、認(rèn)為編譯的就好,不編譯的就不好;也不要認(rèn)為編譯的就“高端”,不編譯的就屬于“低端”。有一些做了很多年程序的程序員或者其它什么人,可能會有這樣的想法,這是毫無根據(jù)的。不爭論。用得妙就是好。用IDLE的編程環(huán)境能夠?qū)慞ython程序的工具很多,比如記事本就可以。當(dāng)然,很多人總希望能用一個專門的編程工具,Python里面自帶了一個,作為簡單應(yīng)用是足夠了。另外,可以根據(jù)自己的喜好用其它的工具,比如我用的是vim,有不少人也用eclipse,還有notepad++,等等。軟件領(lǐng)域?yàn)榫幊烫峁┝素S富多彩的工具。以Python默認(rèn)的IDE為例,如
8、下所示:操作:File->Newwindow這樣,就出現(xiàn)了一個新的操作界面,在這個界面里面,看不到用于輸入指令的提示符:>>>,這個界面有點(diǎn)像記事本。說對了,本質(zhì)上就是一個記事本,只能輸入文本,不能直接在里面貼圖片。資料寫兩個大字:Hello,Wo