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