
函数
谊光
这个作者很懒,什么都没留下…
展开
-
Python 基础学习——类
##类基础学习9.1、9.2class Restaurant(): def __init__(self,restaurant_name,cuisine_type): self.restaurant_name=restaurant_name self.cuisine_type=cuisine_type def describe_r...原创 2019-11-01 15:34:35 · 181 阅读 · 0 评论 -
Python基础学习——函数后面的练习题
函数重新系统学习Python编程从入门到实践的习题“动手试一试”8.1/8.2动手试一试定义函数及应参、实参应用def display_message(): print('I study how to use fuction.')display_message()def favorite_book(title): print('One of my favorite b...原创 2019-10-28 15:51:27 · 309 阅读 · 0 评论