1 Star 0 Fork 0

Gao Pengfei/learnPython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ex13.py 871 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhio 提交于 2017-02-11 16:09 . 2/11
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2017-02-10 13:29:03
# @Author : Your Name (you@example.org)
# @Link : http://example.org
# @Version : $Id$
#函数调用
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's enough for a party!"
print "Get a blanket.\n"
print "We can just give the function numbers directly:"
cheese_and_crackers(20, 30)
print "OR, we can use variables from our script:"
amount_of_cheese = 10
amount_of_crackers = 50
cheese_and_crackers(amount_of_cheese, 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_cheese + 100, amount_of_crackers + 1000)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/gpfer/learnPython.git
git@gitee.com:gpfer/learnPython.git
gpfer
learnPython
learnPython
master

搜索帮助