3 Star 0 Fork 0

mirrors_linagora/twake-doc-fr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lumache.py 528 Bytes
一键复制 编辑 原始数据 按行查看 历史
Benoît Tallandier 提交于 2022-03-11 11:10 . Initial commit
"""
Lumache - Python library for cooks and food lovers.
"""
__version__ = "0.1.0"
class InvalidKindError(Exception):
"""Raised if the kind is invalid."""
pass
def get_random_ingredients(kind=None):
"""
Return a list of random ingredients as strings.
:param kind: Optional "kind" of ingredients.
:type kind: list[str] or None
:raise lumache.InvalidKindError: If the kind is invalid.
:return: The ingredients list.
:rtype: list[str]
"""
return ["shells", "gorgonzola", "parsley"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_linagora/twake-doc-fr.git
git@gitee.com:mirrors_linagora/twake-doc-fr.git
mirrors_linagora
twake-doc-fr
twake-doc-fr
main

搜索帮助