
高级编程技术
文章平均质量分 87
cwlio
123
展开
-
高级编程技术作业2018/3/11
一.浏览Python主页(https://www.python.org/),在博客上写下你有哪些发现和收获Python主页上介绍了很多关于Python的基础内容,对我们这些初学者来说十分有用。还有社区方便Python的使用者们进行交流,上边还有关于Python的新闻(News)和成功的案例(Success Stories)让我了解到了Python的应用很广泛,而且功能十分强大。二.假设你已经成为一...原创 2018-03-11 19:57:57 · 215 阅读 · 0 评论 -
高级编程技术 第二周作业
第3章第4章原创 2018-03-18 21:17:57 · 243 阅读 · 0 评论 -
高级编程技术 第三周作业
一.第四周5-1name = 'Jack' sex = 'male' age = 20 car = 'subaru' height = 180 print ("Is name == 'Jack'? I predict True") print (name == 'Jack') print ("\nIs name == 'Tom'? I predict False") print (name ==...原创 2018-03-25 18:03:18 · 340 阅读 · 0 评论 -
高级编程技术 第五周作业
第九章9-1class Restaurant(): def __init__(self, restaurant_name, restaurant_type): self.restaurant_name = restaurant_name self.restaurant_type = restaurant_type def describe_restaurant(self): pr...原创 2018-04-09 01:23:27 · 182 阅读 · 0 评论 -
高级编程技术 第四周作业
第七章7-1car = input ("What kind of cars do you want? ") print ("Let me see if I can find you a " + car + ".")7-2number = input ("How many of you are coming here? ") number = int (number) if number > ...原创 2018-04-01 19:54:18 · 249 阅读 · 0 评论 -
高级编程技术 第六周作业
第十一章11.1city_functions.pydef get_city_country(city, country): city_country = city + ', ' + country return city_country.title()test_cities.pyimport unittest from city_functions import get_city_coun...原创 2018-04-16 01:48:41 · 239 阅读 · 0 评论