python函数练习题2
Posted 围岭山上的山文居士
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数练习题2相关的知识,希望对你有一定的参考价值。
城市名:编写一个名为 city_country()的函数,它接受城市的名称及其所属的
国家。这个函数应返回一个格式类似于下面这样的字符串:
------------------------------
"Santiago, Chile"
------------------------------
def city_country(city_name,country_name): city_country_name = city_name+‘ ‘+country_name return city_country_name i=0 while i<3: ci_name = input("Please enter the city name: ") co_name = input("Please enter the country name: ") ci_co_name = city_country(ci_name,co_name) print(ci_co_name.title()) i+=1 while i==3: chioce = input("You have entered it three times. Would you like to try to enter new three times(y or n)? ") if chioce == "y": i=0 else: print("Welcome to play next time! Bye!") break
以上是关于python函数练习题2的主要内容,如果未能解决你的问题,请参考以下文章