Python入门教程.docx
Python入门教程1-PythonSyntax1 Python是一个高效的语言,读和写的操作都是很筒洁的,就像一般的英语一样2 Python是一个说明执行的语言,我们不须要去编译,我们只要写出代码即可运行3 Python是一个面对对象的语言,在Python里面一切皆对象4 Python是一门很好玩的语言5变量:一个变量就是一个单词,只有一个单一的值练习:设置一个变量my_variable,值设置为10IcppJ#Writeyourcodebelow!myvariable=103第三节1 PythOn里面有三种数据类型interage,floats,booleans2 PythOn是一个区分大小写的语言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=7Changethevalueofmy_intto3online8!my_int=3ttllere'ssomecodethatwillprintmy_inttotheconsole:#Theprintkeywordwillbecoveredindetai1soon!printmyint7 Pyhton的声明和英语很像8 Python里面声明利用空格在分开3练习:杳看以下代码的错误pythondefspam():eggs=12returneggsprintspam()9 Python中的空格是指正确的缩进2练习:改正上一节中的错误pythondefspam():eggs=12returneggsprintspamO10 PythOn是一种说明执行的语言,只要你写完即可马上运行2练习:设置变量SPam的只为True,eggs的值为Falsepythonspam=Trueeggs=False11Python的注释是通过“铲来实现的,并不影响代码的实现2练习:给下面的代码加上一行注释python#thisisacommentsforPythonmysterious_variable=4212 Python的多行注释是通过”来实现的2练习:把下面的代码加上多行pythonthisisaPythoncoursea=513 Python有6种算术运算符+,-,/,(»),%2练习:把变量COUnt_to设置为1+2python#Setcount_toequalto1plus2online3!count_to=1+2printcount_to14PythOn里面求x"m,写成x*m2练习:利用察运算,把eggs的值设置为100python#Seteggsequalto100usingexponentiationonline3!eggs=10*2printeggs1练习:1写一行注释2把变量monty设置为TrUe3把变量PyIhon值设置为1.2344把monty_python的值设置为python的平方pythonWthiSisaPythonmonty=Truepython=1.234monty_python=python*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.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# Setthevariablebrianonline3!brian="Alwayslookonthebrightsideoflife!”1练习1把变量CaeSar变量设置为Graham2把变量Praline变量设置为John3把变量Viking变量设置为TereSapython# ASSignyourvariablesbelow,eachonitsownline!caesar="Graham”praline="John"viking="Teresa”# PUtyourvariablesabovethislineprintcaesarprintpraline17Python是通过来实现转义字符的2练习把'Help!Help!mbeingrepressed!'中的I'm中的进行转义python#Thestringbelowisbroken.Fixitusingtheescapebackslash!,Help!Help!,mbeingrepressed!'18我们可以运用”来避开转义字符的出现2练习:pythonThestring"PYTHOVnumbered0to5,asIPIYITIHI00123Soifyouwanted"Y",把变量fifth_letter设置为MONTY的第五个字符hassixcharacters,shownbelow:45couldjusttypecountingFrom0!)you"PYTHON”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的第三种方法,upper。把全部的大写字母转化为小写字母2练习:把Parrot中的小写字母转换为大写字母并打印pythonparrot=,norwegianblue"printparrot,upperO第八节1介绍String的第四种方法,slr()把r字符串转化为字符串,比如str(2)是把2转化为字符串"2"2练习:设置一个变量Pi值为3.M,把Pi转化为字符串python"""Declareandassignyourvariableonline4,thencallyourmethodonline5!"""pi=3.14printstr(pi)22主要介绍的用处,比如上面的四个String的四个方法都是用到了点2练习:利用来运用Slring的变量ministry的函数Ieno和UPPer0,并打印出pythonministry="TheMinistryofSillyWalks*printIen(ministry)printministry,upperO23介绍print的作用2练习:利用Print输出字符串"MontyPython*python"""TellPythontoprintvMontyPythortotheconsoleon1i11e4!”""printwMontyPythOrr1介绍Print来打印出一个变量2练习:把变量the_machine_goes值赋值"Ping!”,然后打印出python"""Assignthestring"Ping!”tothevariablethe_machine_goeson1ine5,thenprintitoutonline6!”""the_machine_goes="Ping!”printthe_machine_goes24介绍我们可以运用+来连接两个String2练习:利用+把三个字符串"Spam"和"and"和"eggs"连接起来输出python# Printtheconcatenationof"Spamandeggs"online3!printSpam+and+eggs25介绍了StrO的作用是把一个数字转化为字符串2练习:利用str()函数把3.14转化为字符串并输出python# Turn3.14intoastringonline3!print"Thevalueofpiisaround"+str(3.14)第十四节1介绍了字符串的格式化,运用气来格式化,字符串是ts2举例:有两个字符串,利用格式化刎来输出pythonstring="Camelot”string_2="place”print"1.et'snotgoto%s.'Tisasilly)s."%(string_l,string_2)1回顾之前的内容2练习1设置变量my_string的值2打印出变量的长度3利用UPPer()函数并且打印变量值python# WriIeyourcodebelow,startingon1ine3!my_string="chenguolin”printlen(my_string)printmy_string.upperOPython入门教程4DateandTime26介绍得到当前的时间datetime.nowO2练习1设置变量now的值为datetime,now()2打印now的值pythonj<spanStyle="font-size:18px”>fromdatetimeimportdatetimenow=datetime,now()printnow<span>27介绍从datetime.now得到的信息中提取出year,month等2练习:从datetime.now中得到的信息中提取出year,month,daypython<spanstyle=*font-size:18pw>fro11datetimeimportdatetimenow=datetime,now()printnow.monthprintnow.dayprintnow.year<span>28介绍把输出日期的格式转化为mddyyyy,我们利用的是珠转化2练习:打印当前的口期的格式为mmddyyyypython<spanstyle=*font-size:18pw>fromdatetimeimportdatetimenow=datetime,11ow()printstr(now.month)+,*+str(now.day)+"/"+str(now.year)<span>29介绍把输出的时间格式化为hh:MlKSS2练习:打印当前的时间的格式为hh:mm:SSpython<spanstyle=*font-size:18pw>fromdatetimeimportdatetimenow=datetime,now()printstr(now.hour)+w/+str(now.minute)+*:*+str(now.second)<span>第五节1练习:把日期和时间两个连接起来输出python<spanstyle=*font-size:18p,>frondatetimeimportdatetimenow=datetime,now()printstr(now.month)+7"+str(now.day)+7"+str(now.year)+str(now.hour)+”:"+str(now.minute)+”:"+str(now.second)<span>Python入门教程5Conditionals&ControlFlow30介绍PyIhon利用有6种比较的方式=,!=,>>>=,<,<=2比较后的结果是TrUe或者是FaISC3练习1把boo1.one的值设置为17<118%1002把bool_two的值设置为100=33*3+13把bool,wo的值设置为19<=2*44把boo1.four的值设置为-22>=-185把b。1.fiVe的值设置为99!=98+1python#ASSignTrueorFalseasappropriateonthelinesbelow!bool_one=17<118%100bool_two=100=33*3+1bool_three=19<=2*4bool_four=-22>=-18boolfive=99!=98+131介绍了比较的两边不只是数值,也可以是两个表达式2练习1把bool_one的值设置为20+-10*2>10%3%22把bool_two的值设置为(10+17)*2=3*63把bo。1.tWo的值设置为1*2*3<=-(-(-1)4把boo1.four的值设置为40/20*4>=-4*25把bo。1.fiVe的值设置为100*0.5!=6+4python# AssignTrueorFalseasappropriateonthelinesbelow!bool_one=20+-10*2>10%3%2bool-two=(10+17)*2=3*6bool_three=1*2*3<="(-(-1)bool_four=40/20*4>=-4*2bool_five=100*0.5!=6+432介绍了Python里面还有一种数据类型是booleans,值为True或者是False2练习:依据题目的意思来设理右边的表达式python# Createcomparativestatementsasappropriateonthelinesbelow!# Makemetrue!bool_one=1<=2# Makemefalse!bool_two=1>2# Makemetrue!bool_three=1I=2# Makemefalse!bool_four=2>2# Makemetrue!bool_five=4<533介绍了第一种连接符and的运用,只有and的两边都是True那么结果才能为Tme2练习1设置变量bool-one的值为FalseandFalse2设置变量bool_two的值为-(-(-(-2)=-2and4>=16*0.53设置变量bo。1.three的值为19M!=300/10/10andFalse4设置变量bool_four的值为一(1*2)<2*0and10%10<=20-10*25设置变量bool_five的值为TrUeandTruepythonbool_one=FalseandFalsebool_two=-(-(-2)=-2and4>=16*0.5bool-three=19%4!=300/10/10andFalsebool_four-(1*2)<2*0and10%10<=20-10*2bool_five=TrueandTrue34介绍了其次种连接符or的运用,只要Or的两边有一个True那么结果才能为True2练习I设置变量b。1.One的值为2*3=108%100or,Cleese,=,KingArthur'2设置变量bool_two的值为TrUeorFalse3设置变量bool_three的值为100*0.5>=50orFalse4设置变量bool_four的值为TrUeorTrue5设置变量bo。1.fiVe的值为l*100=100*lor3*2*1!=3+2+1pythonbool_one=2*3=108%100or,Cleese,=,KingArthur'bool_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_onc的值为notTrue2设置变量bool_two的值为not3*4<4*33设置变量boolhree的值为not10%3<=10%24设置变量bool_fOUr的值为not3*2+4*2I=5*25设置变量bool_five的值为notnotFalsepythonbool_one=notTruebool-two=not3*4<4*3bool_three=not10%3<=10%2bool_four=not3*2+4*2!=5*2bool_five=notnotFalse36介绍了由于表达式许多所以我们常常运用()来把一些表达式括起来,这样比较具有可读性2练习1 设置变量bool_one的值为FalSeor(notTrue)andTrue2 设置变量bool_two的值为FaISeand(notTrue)orTrueprintusing_control_onceOprintusing_contro1_again()39介绍了else这个条件语句2练习:完成函数里面else条件语句pythonanswer="'Tisbutascratch!*defblack-knight():ifanswer=*,Tisbutascratch!*:returnTrueelse:returnFalse#MakesurethisreturnsFalsedeffrench_soldier():ifanswer=*Goaway,orIshalltauntyouasecondtime!:returnTrueelse:returnFalse#MakesurethisreturnsFalse40介绍了另外一种条件语句elif的运用2练习:在函数里面其次行补上answer>5,第四行补上answer<5,从而完成这个函数pythondefgreater_less_equal_5(answer):ifanswer>5:return1elifanswer<5:return-1else:return0printgreater_less_equal_5(4)printgreater_less_equal_5(5)printgreater_less_equal_5(6)第十三节1练习:利用之前学的比较以及连接符以及条件语句补全函数。全部的都要出现至少一次pythondefthe_flying_circus():#Startcodinghere!if1<2andnotFalse:returnTrueelif1=1or1!=2or1<2or1<=2or1>2or1>=2:returnTrueelse:returnFalsePython入门教程6Pyg1.atin1练习:运用Python来输出这句话"WelcometotheEnglishtoPig1.atintranslator!wpythonprintWelcometotheEnglishtoPig1.atintranslator!*41介绍了Python的输入,Python里面我们可以通过raw_input来实现出入2比如我们运用name=raw_ijnput(*what,syourname*),那么这里将会在What'syourname提示我们输入,并把结果保存到name里面3练习:运用。riginal变量来接受任何的输入pythonprint"WelcometotheEnglishtoPig1.atintranslator!woriginal=raw_input(welcometothePython:*)42介绍了我们在输入的时候常常出现输入空字符串的状况,因此我们须要去检查是否是空字符串2练习:在上一节的输入的值进行推断,假如不是空字符串那么打印这个值,否则干脆输出"c叩Iy”pythonprint“WelcometotheEnglishtoPig1.atintranslator!*original=raw_inputC,welcometothePython/)iflen(original)>0:printoriginalelse:print"empty”43介绍了怎样推断一个字符串是数字的方法,我们可以通过isalpha()来推断假如是阿拉伯数字,则isalpha的值为false,否则为TRUE2比如有一个变量为X="123",那么X.isalpha()是TrUe3练习:通过变量Original的输入值来推断是否是一个数字串pythonprint“WelcometotheEngishtoPig1.atintranslator!woriginal=raw_input("welcometothePython:*)iforiginal,isalpha():print"True"else:print"False”第五节1练习:利用多次的输入来推断是否是数字串和非空字符串pythonprint"WelcometotheEnglishtoPig1.atintranslator!"original=raw_input(vcIcometothePython:")iforiginal,isalpha():.“a*”printTrueelse:print"False”original=raw_input(welcometothePython:*)iflen(y)=O:print“empty”else:print"noemptyw第六节1回顾了一下之前的String的IOWerO函数2练习1.设置变量word等于original.IowerO2设置变量first等于word的第一个字符pythonpyg='ay'original=raw_input(fEnteraword:,)word=original.IowerOfirst=wordOifIen(original)>Oandoriginal,isalpha():printoriginalelse:print,empty,第六节1介绍了if语句里面还可以嵌套语句2练习:推断上一节里面的first字符是否是元音字符是的话输出"vowe1”,否则输出"consonant"pythonpyg=(ay,original=raw_inputCEnteraword:')word=original.IowerOfirst=word0iflen(original)>0andoriginal,isalpha():iffirst='a'orfirst='i'orfirst='o'orfirst=,u,orfirst=,e,:print“vowelelse:print“consonant”else:print'empty,第七节1利用String的+操作,产生一个新的变量newjord等于word+pyg2练习:把Print"vowel”替换成PrintnewwordpythonPYg='ay'original=raw-input(,Enteraword/)word=original.IowerOfirst=word0ncwword=word+pygiflen(original)>0andoriginal,isalpha():iffirst='a'orfirst='i'orfirst=,o,orfirst='u,orfirst=,e:printncwwordelse:print“consonant”else:print,empty,44介绍了String中得到子串的方法,比如我们有一个字符串S=“fool现在50:2就是"为"45假如结束是末尾,那么可以干脆写成这样si:,省略其次个数2练习:在嵌套的if语句里面设置new_word的值为WOrd从第1位到最终一位+变量pygpythonpyg='ay'original=raw_input(,Enteraword:,)word=original.IowerOfirst=word0ncwword=word+pygiflen(original)>0andoriginal,isalpha():iffirst='a'orfirst='i'orfirst='o'orfirst='u,orfirst=,e':newword=wordl:+pygprintnew_wordelse:print"consonant”else:print,empty,Python入门教程7Pyg1.atin46介绍了PythOn的函数组成有三部份,函数头,函数体2函数的举例pythondefni_sayer():"""PrintsTi!'totheconsole."""print"Ni!"3练习:写一个函数,输出字符串“Eggs!”,函数体增加一行注释python# Defineyourspamfunctionstartingonline5.Youttcan1eavethecodeonline11alonefornow-we'11# explainitsoon!defspam():thisisazhusnprint"Eggs!”# Definethespamfunctionabovethisline.spam()47介绍了函数的调用,就是干脆函数名2练习:调用函数SPam(IO)by_three(4)51介绍了Python里面可以导入许多的系统的模块,就像C语言的include2假设我们没有导入math模块的时候,那么执行Printsqrt(25)的时候会报错3练习1 导入math模块,importmath2 执行Printmath,sqrt(25),加了一个math说明调用系统的库函数python#AskPythontoprintsqrt(25)on1ine3.importmathprintmath.sqrt(25)52Import我们还可以只是单独的导入模块里面的方法2比如frommoduleimportfunction3练习:从math模块里面值导入sqrt函数python#Import*just*thesqrtfunctionfrommathonline3!frommathimportsqrtprintsqrt(25)53 Inport运用frommoduleimport*来表示从模块里面导入全部的函数,这样调用的时候就干脆调用即可2练习:从Inath模块里面导入全部的方法,然后随意选择一个函数来测试pythonftImportEverything*fromthemathmoduleonline3!frommathimport*printsqrt(25)54 Importfrommoduleinort*方法的缺点就是,假如我们导入了许多的模块,那么可能导致出现相同的函数名,因此我们最好是运用importmodule,然后运用module.name2测试以下代码的结果pythonimportmath#Importsthemathmoduleeverything=dir(math)#Setseverythingtoalistofthingsfrommathprinteverything#Prints'emal1!第十一节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)printabsolute56介绍了type函数的运用,type函数返回的是当前这种数据的类型,比如int,float等2type函数的运用举例pythonprinttype(42)Python入门教程8Python1.istsandDictionaries57介绍了Python的列盘list2列表的格式list_name=iteml,item2>Python的列表和C语言的数组很像3列表可以为空,就是emptyist=,比如数组为空4举例pythonzooanimals="pangolin","cassowary","sloth","dog"# Oneanimalismissing!ifIen(zooanimals)>3:print"Thefirstanimalatthezooisthe"+zooanimals0print*Thesecondanimalatthezooisthe"+zooanimalslprint“Thethirdanimalatthezooisthe"+zooanimals2print"Thefourthanimalatthezooisthe"+zooanimals358介绍了我们可以运用下标来访问list的元素,就像数组一样2下标从O起先,比如listUUne0是第一个元素3练习:输出列表numbers的其次个和第四个数的和pythonnumbers=5,6,7,8print“Addingthenumbersatindices0and2”printnumbers0+numbers2print*ddingthenumbersatindices1and3”# Yourcodehere!printnumbers1+numbers359介绍了我们可以运用下标来对第几个元素进行赋值2比如Iisyja11e2=2,就是把列表的第三个值赋值为23练习:把列表zoo_ardmals中的IigCr换成其它的动物pythonzoo_animals="pangolin","cassowary","sloth","tiger”# 1.astnightourzoo'sslothbrutalIyattacked# thepoortigerandateitwhole.# Theferociousslothhasbeenreplacedbyafriendlyhyena.zoo_animals2="hyena”# Whatshallfillthevoidleftbyourdeardepartedtiger?# Yourcodehere!zoo_animals3="dogmiddle=suitcase2:4# Thelasttwoitemslast=suitcase4:62介绍了不仅列表可以得到子串,字符串也满意2比如Stringa:b是得到从下标a起先到b之前的子串3练习:把三个变量分别设置为对应的子串pythonanimals="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,