- 1、本文档共50页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
python进门[新版]
Python入门(优雅的语言,简洁而强大,2007年度语言) 参考资料:Python简明教程;Python的历史;Python的语言特点;Python的语法特点;为什么是Python;Python赢得2007年度编程语言;Python赢得2007年度编程语言;Python赢得2007年度编程语言;学习AI为什么用Python;成浇猫纱贡密胯苫琉铭厦贫校甥谰锨沛恢危候妥棚咽似尾椽茎儒荧锰拎削Python入门Python入门;使用Python(Windows下);两种主要运行Python程序的方法;两种主要运行Python程序的方法;IDLE开发环境(PythonGUI);IDLE开发环境(PythonGUI);Python语法;字符串;字符串;变量无需事先定义;练习1;列表 LIST;列表 LIST;列表 LIST;列表 LIST;列表 LIST;练习2;元组 tuple;字典 dictionary;字典 dictionary; studentIds{aria: [42.0, forty-two], arlo: 56.0, john: ninety-two} studentIds.keys()[aria, arlo, john] studentIds.values()[[42.0, forty-two], 56.0, ninety-two] studentIds.items()[(aria,[42.0, forty-two]), (arlo,56.0), (john,ninety-two)] len(studentIds) 3 ;练习3;获取输入;range(x),用这个函数可以产生出一个列表(list), 成员分别为 0, 1, 2, 3, ..., x-1。 输入下列指令可以很简单的看出来他的功用: ran = range(10) print ran[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]这个在之后的 for 循环会常使用到.;Python编程(脚本编写);脚本编写;for 循环;for 循环;特别注意:缩进;特别注意:缩进;for应用于列表;练习4;函数;函数例子2;函数例子2;练习5;类和对象; def getCostPerPound(self, fruit):
fruit: Fruit string
Returns cost of fruit, assuming fruit
is in our inventory or None otherwise
if fruit not in self.fruitPrices:
print Sorry we dont have %s % (fruit)
return None
return self.fruitPrices[fruit]; def getPriceOfOrder(self, orderList):
orderList: List of (fruit, numPounds) tuples
Returns cost of orderList. If any of the fruit are
totalCost = 0.0
for fruit, numPounds in orderList:
costPerPound = self.getCostPerPound(fruit)
if costPerPound != None:
totalCost += numPounds * costPerPound
return totalCost
def getName(self):
return self.name;对象;练习6
文档评论(0)