系统:mac os 10.14
Python: 2.7.10
版本:《笨办法学Python》(第四版)
基本习题
1. 完成基本习题
(1) 根据题目,编辑以下内容:
age = raw_input("How old are you?")
height = raw_input("How tall are you?")
weight = raw_input("How much do you weight?")
print "So, you'are %r old, %r tall and %r heavy." %(age, height, weight)
"""
输出结果如图所示:
加分习题
1. 在命令行界面下运行你的程序,然后在命令行输入py docraw_input看它说了些什么
如果你用的是 Window,那就试一下 python -m pydocraw_input 。
2. 输入 q 退出 pydoc
照做
3. 上网找一下 pydoc 命令是用来做什么的
python中pydoc模块可以从python代码中获取docstring,然后生成帮助信息。
参考链接:https://www.jianshu.com/p/af8eabb43cb8