
Python
文章平均质量分 85
Alicia Waffle
这个作者很懒,什么都没留下…
展开
-
Chapter 8 Functions
FunctionsDefining a FunctionPassing Information to a FunctionDefining a Functiondef greet_user(): '''Display a simple greeting.''' #docstring,描述函数功能 print("Hello!")greet_user() #调用call冒号Passing Information to a Function...原创 2021-02-24 14:07:07 · 433 阅读 · 0 评论 -
Chapter 7 User Input and while Loops
1147.1 How the input() Function Works7.1.1 A Simple Examplemessage = input("Tell me something, and I will repeat it back to you: ")print(message)把input的内容赋给了一个变量。7.1.2 多行显示prompt:prompt = "If you tell us who you are, we can personalize the messages原创 2021-02-11 10:30:53 · 420 阅读 · 3 评论 -
Chapter 5 if Statement
if Statement、条件测试、 检查某元素是否在\不在list中、if-elif-if Chain、检查list是否为空原创 2021-01-26 09:23:42 · 337 阅读 · 1 评论 -
Chapter 3 & 4 Lists
增删元素、for循环、数字list、切片、元组原创 2021-01-25 16:40:29 · 466 阅读 · 0 评论