首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴感v的代码贴Python 3
'''
def descrip_city(city_name, coury_name):
    #return(city_name + "is belong to "+ coury_name)
    city_info = {"city":city_name, "country":coury_name}
    return city_info
result = descrip_city(city_name='Reykjavik', coury_name='Iceland.')
print(result)
'''

def mname(*arg):
    # TODO: write code...
    for a in arg:
......................
阅读全部 | 2022年3月29日 11:15
1
感v