《Python入门教程.docx》由会员分享,可在线阅读,更多相关《Python入门教程.docx(85页珍藏版)》请在三一办公上搜索。
1、Python入门教程1-PythonSyntax1 Python是一个高效的语言,读和写的操作都是很筒洁的,就像一般的英语一样2 Python是一个说明执行的语言,我们不须要去编译,我们只要写出代码即可运行3 Python是一个面对对象的语言,在Python里面一切皆对象4 Python是一门很好玩的语言5变量:一个变量就是一个单词,只有一个单一的值练习:设置一个变量my_variable,值设置为10IcppJ#Writeyourcodebelow!myvariable=103第三节1 PythOn里面有三种数据类型interage,floats,booleans2 PythOn是一个区分大
2、小写的语言3练习I把变量myint值设置为72把变量my_fIoat值设置为1.233把变量Inyj)Ool值设置为truepython#SetthevariablestothevaluesIiStedintheinstructions!my_int=7my_float=1.23my_bool=True6Python的变量可以随时进行覆盖2练习:的值从7改为3,并打印出my_intpython#my_intissetto7below.WhatdoyouthinkVillhappenifweresetitto3andprinttheresult?my_int=7Changethevalueofm
3、y_intto3online8!my_int=3ttlleressomecodethatwillprintmy_inttotheconsole:#Theprintkeywordwillbecoveredindetai1soon!printmyint7 Pyhton的声明和英语很像8 Python里面声明利用空格在分开3练习:杳看以下代码的错误pythondefspam():eggs=12returneggsprintspam()9 Python中的空格是指正确的缩进2练习:改正上一节中的错误pythondefspam():eggs=12returneggsprintspamO10 PythOn
4、是一种说明执行的语言,只要你写完即可马上运行2练习:设置变量SPam的只为True,eggs的值为Falsepythonspam=Trueeggs=False11Python的注释是通过“铲来实现的,并不影响代码的实现2练习:给下面的代码加上一行注释python#thisisacommentsforPythonmysterious_variable=4212 Python的多行注释是通过”来实现的2练习:把下面的代码加上多行pythonthisisaPythoncoursea=513 Python有6种算术运算符+,-,/,(),%2练习:把变量COUnt_to设置为1+2python#Set
5、count_toequalto1plus2online3!count_to=1+2printcount_to14PythOn里面求xm,写成x*m2练习:利用察运算,把eggs的值设置为100python#Seteggsequalto100usingexponentiationonline3!eggs=10*2printeggs1练习:1写一行注释2把变量monty设置为TrUe3把变量PyIhon值设置为1.2344把monty_python的值设置为python的平方pythonWthiSisaPythonmonty=Truepython=1.234monty_python=python*
6、2Python入门教程2TipCalculator1把变量meal的值设置为44.50pythonWAssignthevariablemealthevalue44.50on1ine3!meal=44.501把变量tax的值设置为6.75%pythonmeal=44.50tax=6.75/1001设置tip的值为15%pythonSYou,realmostthere!Assignthetipvariableon1ine5.meal=44.50tax=0.0675tip=0.151把变量meal的值设置为meal+meal*taxpython#ReaSSignmealonline7!meal=44
7、.50tax=0.0675tip=0.15meal=meal+meal*tax设置变量total的值为mcal+meal*laxpython#ASSignthevariab1etotalon1ine8!meal=44.50tax=0.0675tip=0.15meal=meal+meal*taxtotal=meal+meal*tipPython入门教程3StringsandConsoleOutput15Python里面还有一种好的数据类型是String16一个String是通过或者包成的申3设置变量brian值为Alwayslookonthebrightsideoflife!*python# S
8、etthevariablebrianonline3!brian=Alwayslookonthebrightsideoflife!”1练习1把变量CaeSar变量设置为Graham2把变量Praline变量设置为John3把变量Viking变量设置为TereSapython# ASSignyourvariablesbelow,eachonitsownline!caesar=Graham”praline=Johnviking=Teresa”# PUtyourvariablesabovethislineprintcaesarprintpraline17Python是通过来实现转义字符的2练习把Hel
9、p!Help!mbeingrepressed!中的Im中的进行转义python#Thestringbelowisbroken.Fixitusingtheescapebackslash!,Help!Help!,mbeingrepressed!18我们可以运用”来避开转义字符的出现2练习:pythonThestringPYTHOVnumbered0to5,asIPIYITIHI00123SoifyouwantedY,把变量fifth_letter设置为MONTY的第五个字符hassixcharacters,shownbelow:45couldjusttypecountingFrom0!)youPY
10、THON”1(alwaysstartfifth.letter=MONTY”4printfifth_letter19介绍String的第一种方法,Ien()求字符串的长度2练习:把变量ParTot的值设置为NonveigianBlue,然后打印parrot的长度pythonparrot=NorwegianBlue*printIen(parrot)20介绍String的其次种方法,1。IrerO把全部的大写字母转化为小写字母2练习:把Parrot中的大写字母转换为小写字母并打印pythonparrot=NorwegianBlue”printparrot.IowerO21介绍String的第三种方法
11、,upper。把全部的大写字母转化为小写字母2练习:把Parrot中的小写字母转换为大写字母并打印pythonparrot=,norwegianblueprintparrot,upperO第八节1介绍String的第四种方法,slr()把r字符串转化为字符串,比如str(2)是把2转化为字符串22练习:设置一个变量Pi值为3.M,把Pi转化为字符串pythonDeclareandassignyourvariableonline4,thencallyourmethodonline5!pi=3.14printstr(pi)22主要介绍的用处,比如上面的四个String的四个方法都是用到了点2练习:
12、利用来运用Slring的变量ministry的函数Ieno和UPPer0,并打印出pythonministry=TheMinistryofSillyWalks*printIen(ministry)printministry,upperO23介绍print的作用2练习:利用Print输出字符串MontyPython*pythonTellPythontoprintvMontyPythortotheconsoleon1i11e4!”printwMontyPythOrr1介绍Print来打印出一个变量2练习:把变量the_machine_goes值赋值Ping!”,然后打印出pythonAssignt
13、hestringPing!”tothevariablethe_machine_goeson1ine5,thenprintitoutonline6!”the_machine_goes=Ping!”printthe_machine_goes24介绍我们可以运用+来连接两个String2练习:利用+把三个字符串Spam和and和eggs连接起来输出python# PrinttheconcatenationofSpamandeggsonline3!printSpam+and+eggs25介绍了StrO的作用是把一个数字转化为字符串2练习:利用str()函数把3.14转化为字符串并输出python# T
14、urn3.14intoastringonline3!printThevalueofpiisaround+str(3.14)第十四节1介绍了字符串的格式化,运用气来格式化,字符串是ts2举例:有两个字符串,利用格式化刎来输出pythonstring=Camelot”string_2=place”print1.etsnotgoto%s.Tisasilly)s.%(string_l,string_2)1回顾之前的内容2练习1设置变量my_string的值2打印出变量的长度3利用UPPer()函数并且打印变量值python# WriIeyourcodebelow,startingon1ine3!my_
15、string=chenguolin”printlen(my_string)printmy_string.upperOPython入门教程4DateandTime26介绍得到当前的时间datetime.nowO2练习1设置变量now的值为datetime,now()2打印now的值pythonjfromdatetimeimportdatetimenow=datetime,now()printnow27介绍从datetime.now得到的信息中提取出year,month等2练习:从datetime.now中得到的信息中提取出year,month,daypythonfro11datetimeimpo
16、rtdatetimenow=datetime,now()printnow.monthprintnow.dayprintnow.year28介绍把输出日期的格式转化为mddyyyy,我们利用的是珠转化2练习:打印当前的口期的格式为mmddyyyypythonfromdatetimeimportdatetimenow=datetime,11ow()printstr(now.month)+,*+str(now.day)+/+str(now.year)29介绍把输出的时间格式化为hh:MlKSS2练习:打印当前的时间的格式为hh:mm:SSpythonfromdatetimeimportdatetim
17、enow=datetime,now()printstr(now.hour)+w/+str(now.minute)+*:*+str(now.second)第五节1练习:把日期和时间两个连接起来输出pythonfrondatetimeimportdatetimenow=datetime,now()printstr(now.month)+7+str(now.day)+7+str(now.year)+str(now.hour)+”:+str(now.minute)+”:+str(now.second)Python入门教程5Conditionals&ControlFlow30介绍PyIhon利用有6种比
18、较的方式=,!=,=,=2比较后的结果是TrUe或者是FaISC3练习1把boo1.one的值设置为17118%1002把bool_two的值设置为100=33*3+13把bool,wo的值设置为19=-185把b。1.fiVe的值设置为99!=98+1python#ASSignTrueorFalseasappropriateonthelinesbelow!bool_one=17118%100bool_two=100=33*3+1bool_three=19=-18boolfive=99!=98+131介绍了比较的两边不只是数值,也可以是两个表达式2练习1把bool_one的值设置为20+-10
19、*210%3%22把bool_two的值设置为(10+17)*2=3*63把bo。1.tWo的值设置为1*2*3=-4*25把bo。1.fiVe的值设置为100*0.5!=6+4python# AssignTrueorFalseasappropriateonthelinesbelow!bool_one=20+-10*210%3%2bool-two=(10+17)*2=3*6bool_three=1*2*3=-4*2bool_five=100*0.5!=6+432介绍了Python里面还有一种数据类型是booleans,值为True或者是False2练习:依据题目的意思来设理右边的表达式pyth
20、on# Createcomparativestatementsasappropriateonthelinesbelow!# Makemetrue!bool_one=12# Makemetrue!bool_three=1I=2# Makemefalse!bool_four=22# Makemetrue!bool_five=4=16*0.53设置变量bo。1.three的值为19M!=300/10/10andFalse4设置变量bool_four的值为一(1*2)2*0and10%10=16*0.5bool-three=19%4!=300/10/10andFalsebool_four-(1*2)2
21、*0and10%10=50orFalse4设置变量bool_four的值为TrUeorTrue5设置变量bo。1.fiVe的值为l*100=100*lor3*2*1!=3+2+1pythonbool_one=2*3=108%100or,Cleese,=,KingArthurbool_two=TrueorFalsebool_three=100*0.5=50orFalsebool_four=TrueorTrueboofive=l*100=100*lor3*2*1!=3+2+135介绍第三种连接符not,假如是notTrue那么结果为False,notFalse结果为True2练习I设置变量bool
22、_onc的值为notTrue2设置变量bool_two的值为not3*44*33设置变量boolhree的值为not10%3=10%24设置变量bool_fOUr的值为not3*2+4*2I=5*25设置变量bool_five的值为notnotFalsepythonbool_one=notTruebool-two=not3*44*3bool_three=not10%35,第四行补上answer5:return1elifanswer5:return-1else:return0printgreater_less_equal_5(4)printgreater_less_equal_5(5)print
23、greater_less_equal_5(6)第十三节1练习:利用之前学的比较以及连接符以及条件语句补全函数。全部的都要出现至少一次pythondefthe_flying_circus():#Startcodinghere!if12andnotFalse:returnTrueelif1=1or1!=2or12or12or1=2:returnTrueelse:returnFalsePython入门教程6Pyg1.atin1练习:运用Python来输出这句话WelcometotheEnglishtoPig1.atintranslator!wpythonprintWelcometotheEnglis
24、htoPig1.atintranslator!*41介绍了Python的输入,Python里面我们可以通过raw_input来实现出入2比如我们运用name=raw_ijnput(*what,syourname*),那么这里将会在Whatsyourname提示我们输入,并把结果保存到name里面3练习:运用。riginal变量来接受任何的输入pythonprintWelcometotheEnglishtoPig1.atintranslator!woriginal=raw_input(welcometothePython:*)42介绍了我们在输入的时候常常出现输入空字符串的状况,因此我们须要去检
25、查是否是空字符串2练习:在上一节的输入的值进行推断,假如不是空字符串那么打印这个值,否则干脆输出c叩Iy”pythonprint“WelcometotheEnglishtoPig1.atintranslator!*original=raw_inputC,welcometothePython/)iflen(original)0:printoriginalelse:printempty”43介绍了怎样推断一个字符串是数字的方法,我们可以通过isalpha()来推断假如是阿拉伯数字,则isalpha的值为false,否则为TRUE2比如有一个变量为X=123,那么X.isalpha()是TrUe3练
26、习:通过变量Original的输入值来推断是否是一个数字串pythonprint“WelcometotheEngishtoPig1.atintranslator!woriginal=raw_input(welcometothePython:*)iforiginal,isalpha():printTrueelse:printFalse”第五节1练习:利用多次的输入来推断是否是数字串和非空字符串pythonprintWelcometotheEnglishtoPig1.atintranslator!original=raw_input(vcIcometothePython:)iforiginal,i
27、salpha():.“a*”printTrueelse:printFalse”original=raw_input(welcometothePython:*)iflen(y)=O:print“empty”else:printnoemptyw第六节1回顾了一下之前的String的IOWerO函数2练习1.设置变量word等于original.IowerO2设置变量first等于word的第一个字符pythonpyg=ayoriginal=raw_input(fEnteraword:,)word=original.IowerOfirst=wordOifIen(original)Oandorigin
28、al,isalpha():printoriginalelse:print,empty,第六节1介绍了if语句里面还可以嵌套语句2练习:推断上一节里面的first字符是否是元音字符是的话输出vowe1”,否则输出consonantpythonpyg=(ay,original=raw_inputCEnteraword:)word=original.IowerOfirst=word0iflen(original)0andoriginal,isalpha():iffirst=aorfirst=iorfirst=oorfirst=,u,orfirst=,e,:print“vowelelse:print“
29、consonant”else:printempty,第七节1利用String的+操作,产生一个新的变量newjord等于word+pyg2练习:把Printvowel”替换成PrintnewwordpythonPYg=ayoriginal=raw-input(,Enteraword/)word=original.IowerOfirst=word0ncwword=word+pygiflen(original)0andoriginal,isalpha():iffirst=aorfirst=iorfirst=,o,orfirst=u,orfirst=,e:printncwwordelse:print
30、“consonant”else:print,empty,44介绍了String中得到子串的方法,比如我们有一个字符串S=“fool现在50:2就是为45假如结束是末尾,那么可以干脆写成这样si:,省略其次个数2练习:在嵌套的if语句里面设置new_word的值为WOrd从第1位到最终一位+变量pygpythonpyg=ayoriginal=raw_input(,Enteraword:,)word=original.IowerOfirst=word0ncwword=word+pygiflen(original)0andoriginal,isalpha():iffirst=aorfirst=ior
31、first=oorfirst=u,orfirst=,e:newword=wordl:+pygprintnew_wordelse:printconsonant”else:print,empty,Python入门教程7Pyg1.atin46介绍了PythOn的函数组成有三部份,函数头,函数体2函数的举例pythondefni_sayer():PrintsTi!totheconsole.printNi!3练习:写一个函数,输出字符串“Eggs!”,函数体增加一行注释python# Defineyourspamfunctionstartingonline5.Youttcan1eavethecodeon
32、line11alonefornow-we11# explainitsoon!defspam():thisisazhusnprintEggs!”# Definethespamfunctionabovethisline.spam()47介绍了函数的调用,就是干脆函数名2练习:调用函数SPam(IO)by_three(4)51介绍了Python里面可以导入许多的系统的模块,就像C语言的include2假设我们没有导入math模块的时候,那么执行Printsqrt(25)的时候会报错3练习1 导入math模块,importmath2 执行Printmath,sqrt(25),加了一个math说明调用系
33、统的库函数python#AskPythontoprintsqrt(25)on1ine3.importmathprintmath.sqrt(25)52Import我们还可以只是单独的导入模块里面的方法2比如frommoduleimportfunction3练习:从math模块里面值导入sqrt函数python#Import*just*thesqrtfunctionfrommathonline3!frommathimportsqrtprintsqrt(25)53 Inport运用frommoduleimport*来表示从模块里面导入全部的函数,这样调用的时候就干脆调用即可2练习:从Inath模块里
34、面导入全部的方法,然后随意选择一个函数来测试pythonftImportEverything*fromthemathmoduleonline3!frommathimport*printsqrt(25)54 Importfrommoduleinort*方法的缺点就是,假如我们导入了许多的模块,那么可能导致出现相同的函数名,因此我们最好是运用importmodule,然后运用module.name2测试以下代码的结果pythonimportmath#Importsthemathmoduleeverything=dir(math)#Setseverythingtoalistofthingsfromm
35、athprinteverything#Printsemal1!第十一节1介绍了第一个函数max(),比如max(l,2,3)返回的是3(min函数是类似的)2max()函数的参数是一个数组,返回数组中的最大值3练习:运用max函数来得到一个数组的最大值python#Setmaximumtothemaxvalueofanysetofnumbersonline3!maximum=max(4,0,-3,78)printmaximum55介绍了其次个函数abs()返回的值恒久是正数,比如abs(-5)返回的是52练习:测试输出abs(-42)的值pythonabsolute=abs(-42)print
36、absolute56介绍了type函数的运用,type函数返回的是当前这种数据的类型,比如int,float等2type函数的运用举例pythonprinttype(42)Python入门教程8Python1.istsandDictionaries57介绍了Python的列盘list2列表的格式list_name=iteml,item2Python的列表和C语言的数组很像3列表可以为空,就是emptyist=,比如数组为空4举例pythonzooanimals=pangolin,cassowary,sloth,dog;# Oneanimalismissing!ifIen(zooanimals)
37、3:printThefirstanimalatthezooisthe+zooanimals0print*Thesecondanimalatthezooisthe+zooanimalslprint“Thethirdanimalatthezooisthe+zooanimals2printThefourthanimalatthezooisthe+zooanimals358介绍了我们可以运用下标来访问list的元素,就像数组一样2下标从O起先,比如listUUne0是第一个元素3练习:输出列表numbers的其次个和第四个数的和pythonnumbers=5,6,7,8print“Addingthen
38、umbersatindices0and2”printnumbers0+numbers2print*ddingthenumbersatindices1and3”# Yourcodehere!printnumbers1+numbers359介绍了我们可以运用下标来对第几个元素进行赋值2比如Iisyja11e2=2,就是把列表的第三个值赋值为23练习:把列表zoo_ardmals中的IigCr换成其它的动物pythonzoo_animals=pangolin,cassowary,sloth,tiger”# 1.astnightourzoosslothbrutalIyattacked# thepoor
39、tigerandateitwhole.# Theferociousslothhasbeenreplacedbyafriendlyhyena.zoo_animals2=hyena”# Whatshallfillthevoidleftbyourdeardepartedtiger?# Yourcodehere!zoo_animals3=dogmiddle=suitcase2:4# Thelasttwoitemslast=suitcase4:62介绍了不仅列表可以得到子串,字符串也满意2比如Stringa:b是得到从下标a起先到b之前的子串3练习:把三个变量分别设置为对应的子串pythonanimal
40、s=catdogfrog”# Thefirstthreecharactersofanimalscat=animals:3# Thefourththroughsixthcharactersdog=animals3:6# Fromtheseventhcharactertotheendfrog=animals6:63介绍了列表的两种方法index(iten)和in8ert(index,item)2 index(item)方法是查找item在列表中的下标,运用方法list_name.index(item)3 insert(index,item)是在卜标index处插入一个item.其余的后移,运用方法Iistjiame.insert(index,