1 / 20

第一次上机

第一次上机. 王佩璐 plwang1990@gmail.com. 任务. 安装和配置 Python 环境 Python Help 运行例程 编写程序. 安装和配置 Python 环境. 下载 Python. 安装和配置 Python 环境. 默认安装在 C:Program FilesPython 开始  运行  cmd  进入这个目录. 安装和配置 Python 环境. 右键“我的电脑”  属性  高级系统设置. 安装和配置 Python 环境.  环境变量  用户变量. 安装和配置 Python 环境.  双击 PATH

Download Presentation

第一次上机

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 第一次上机 王佩璐 plwang1990@gmail.com

  2. 任务 • 安装和配置Python环境 • Python Help • 运行例程 • 编写程序

  3. 安装和配置Python环境 • 下载Python

  4. 安装和配置Python环境 • 默认安装在C:\Program Files\Python • 开始运行cmd进入这个目录

  5. 安装和配置Python环境 • 右键“我的电脑”属性高级系统设置

  6. 安装和配置Python环境 • 环境变量用户变量

  7. 安装和配置Python环境 • 双击PATH • 在箭头最后插入; C:\Program Files\Python • 不要忘记分号(在英文输入法状态下)“;” • 保存操作

  8. 安装和配置Python环境 • 重启cmd • 在任何环境下使用Python

  9. 安装和配置Python环境 • 退出Python:关闭cmd,或者

  10. Python Help

  11. Python Help

  12. 运行例程 • helloworld.py

  13. 运行例程 • base_cast.py(进制转换)

  14. 编写程序 • Console下写一些小程序

  15. 编写程序 • 打开一个编辑器(IDLE,记事本…) • 输入语句 • 另存为“名字.py”

  16. 编写程序 • 编写一个程序,命名为“myinfo.py” • 输出如下:名字和学号替换成你的,这个程序作为上机点名(不要有任何多余的字符,也不要少任何字符) • 以后你们提交的所有程序(需要的话),都必须有如下程序的第一行签名

  17. 编写程序 • 编写一个程序,命名为“ball.py” • 输入:接受一个球体的半径r • 输出:输出球体的表面积(area)以及体积(volume) • 相关公式: • pi=3.14 • area=4*pi*r^2 • volume=4/3*pi*r^3

  18. 例: 输入:3 输出:area: 113.04000 volume: 113.04000

  19. 编写程序 • 编写一个程序,命名为“filter.py” • 输入:任意一段话 • 输出:把敏感字替换成*输出 敏感字为:红,黄,蓝,绿

  20. 例: 输入:小红走到十字路口等红绿灯 输出:小*走到十字路口等**灯

More Related