1 Star 0 Fork 0

Lxxyx/Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Day19 函数和变量.py 1021 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lxxyx 提交于 2015-07-20 15:22 . 第一次Git
# -*- coding: utf-8 -*-
__author__ = 'Liu'
def cheese_and_crackers(cheese_count, boxes_of_crackers):
print("You have %d cheeses!" % cheese_count)
print("You have %d boxes of crackers!" % boxes_of_crackers)
print("Man that enough for party")
print("Get a blanket.\n")
# 可以直接给函数传数字
print("We can just give the function numbers directly:")
cheese_and_crackers(20, 30)
# 还能通过input让用户输入数量再输出
cheese_and_crackers(int(input("cheese>")), int(input("crackers>")))
print("Or we can use variable from our script:")
amount_of_cheeses = 10
amount_of_crackers = 50
# 也可以直接给函数传变量
cheese_and_crackers(amount_of_cheeses, amount_of_crackers)
# 还可以给函数传数学表达式
print("We can even do math inside too:")
cheese_and_crackers(10 + 20, 5 + 6)
# 还可以给函数传数学表达式+变量的混合体
print("And we can combine the two,variables and math:")
cheese_and_crackers(amount_of_cheeses + 100, amount_of_crackers + 1000)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lxxyx/Python.git
git@gitee.com:lxxyx/Python.git
lxxyx
Python
Python
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385