码迷,mamicode.com
首页 > 编程语言 > 详细

python函数练习题2

时间:2020-03-07 13:15:15      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:名称   mes   try   play   函数   bre   title   ioc   ase   

城市名:编写一个名为 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

标签:名称   mes   try   play   函数   bre   title   ioc   ase   

原文地址:https://www.cnblogs.com/show530/p/12433323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!