8-6编写一个名为city_country()的函数,它接受城市的名称及其所属的国家。这个函数应返回一个格式类似于下面这样的字符串:defcity_country(city,country):printcity+‘,‘+countryif__name__=="__main__":city_country(‘Beijing‘,‘China‘)city_country(‘Shanghai‘,‘Chin
分类:
其他好文 时间:
2018-06-05 11:28:54
阅读次数:
309
题目描述 As a landlocked country in central and southern Africa , the political situation has been relatively stable since the implementation of multi-par ...
分类:
其他好文 时间:
2018-06-03 19:35:35
阅读次数:
237
#储备知识exec#参数1:字符串形式的命令#参数2:全局作用域(字典形式),如果不指定默认就使用globals()#参数3:局部作用域(字典形式),如果不指定默认就使用locals() #一切皆对象,对象可以怎么用?#1、都可以被引用,x=obj#2、都可以当作函数的参数传入#3、都可以当作函数的 ...
分类:
其他好文 时间:
2018-06-02 00:34:19
阅读次数:
164
world_alcohol.txt文件内容 Year,WHO region,Country,Beverage Types,Display Value 1986,Western Pacific,Viet Nam,Wine,0 1986,Americas,Uruguay,Other,0.5 1985,A ...
分类:
其他好文 时间:
2018-06-01 16:21:50
阅读次数:
197
文档格式 <?xml version="1.0"?><data> <country name="Liechtenstein"> <rank updated="yes">2</rank><year>2008</year> <gdppc>141100</gdppc> <neighbor name="Au ...
分类:
编程语言 时间:
2018-05-29 00:11:32
阅读次数:
174
1、面向对象 class Test(): #class来定义类 country = 'China' # 类变量 直接定义在类中的 #实例方法 必须实例化才能调用 def my(self): #没有self 相当于静态方法。 print(self.country) a = Test() # 类名加() ...
分类:
其他好文 时间:
2018-05-28 22:40:07
阅读次数:
189
marsh:It was like my own marsh country, flat and monotonous.The government will take more measures to accelerate the construction of marsh gas project ...
分类:
其他好文 时间:
2018-05-26 10:42:58
阅读次数:
212
Jzzhu is the president of country A. There are n cities numbered from 1 to n in his country. City 1 is the capital of A. Also there are m roads connec ...
分类:
其他好文 时间:
2018-05-25 01:34:29
阅读次数:
147
try 可以设置提醒,用catch来捕获返回值 ②省市联动 循环填充的时候要先清空之前的, 代码如下: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <script type= ...
分类:
编程语言 时间:
2018-05-23 16:12:09
阅读次数:
242
广义的封装:把类和函数放到类里,公有的 狭义的封装:把一些变量和方法,隐藏起来不对外公开,私有的_名字(双下划线加名字) class Person: __conutry = '中国' #私有的静态属性 print(Person.__country) -->AttributeError: type o ...
分类:
编程语言 时间:
2018-05-22 19:42:45
阅读次数:
191