2 Star 1 Fork 2

NuLLLand ZHANG/python数学实验与建模

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
before-learning.py 338 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZHANG HAOHAN 提交于 2021-03-27 11:10 +08:00 . chapter1 done
# format out put
name = 'Teacher Zhou Kai'
age = 45
print("{}的年龄是{}".format(name, age)) # normal
print("{}的年龄是{}".format(age, name)) # abnormal, variable sequence decides the print sequence
# the better way
print(name, "的年龄是", age) # with one space
print("1", "2", "3", sep="!") # split with sep
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/nullland-zhang/python-mathematical-and-experiment-modeling.git
git@gitee.com:nullland-zhang/python-mathematical-and-experiment-modeling.git
nullland-zhang
python-mathematical-and-experiment-modeling
python数学实验与建模
master

搜索帮助