CEN02 - Installing Python on Your Computer

2023-12-05 20:12

本文主要是介绍CEN02 - Installing Python on Your Computer,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • I. Introduction
  • II. Installing Python
    • 1. Download the latest version of Python from the official website
    • 2. Run the installer and follow the installation wizard
    • 3. Ensure that the "Add Python.exe to PATH" checkbox is checked for easier command-line access
    • 4. Complete the installation process
  • III. Using Command-Line Python for Fun
    • 1. Open the command-line Python from the start menu
    • 2. Use the print function to display a message on the screen
    • 3. Perform basic operations, such as addition, using Python statements
    • 4. Type exit() and press Enter to quit the command-line Python
  • IV. Using Python with IDLE Window
    • 1. Open the IDLE Python from the start menu
    • 2. Perform operations interactively
    • 3. Write a Python program in the IDLE code editor window
    • 4. Save the Python program at the spciefied location
    • 5. Run a Python program in IDLE
  • V. Conclusion
  • I. 引言
  • II. 安装Python
    • 1. 从官方网站下载最新版本的Python
    • 2. 运行安装程序并遵循安装向导
    • 3. 确保选中了“添加Python.exe到PATH”复选框,以便于命令行访问
    • 4. 完成安装过程
  • III. 使用命令行Python的乐趣
    • 1. 从开始菜单打开命令行Python
    • 2. 使用print函数在屏幕上显示消息
    • 3. 使用Python语句执行基本操作,例如加法
    • 4. 输入exit()并按Enter键退出命令行Python

I. Introduction

  • Today, I will guide you through the process of installing Python on your computer and using command-line python and IDLE.

II. Installing Python

1. Download the latest version of Python from the official website

  • Python’s official website is https://www.python.org/.
    在这里插入图片描述
  • Navigate to the “Downloads” section by clicking the corresponding link in the navigation bar.
    在这里插入图片描述
  • Click the “Download Python 3.12.0” button
    在这里插入图片描述
  • Click the “Download Immediately” button to download the Python installer to the designated location on my computer.
    在这里插入图片描述

2. Run the installer and follow the installation wizard

  • Choose Customize to enable or disable features
    在这里插入图片描述

3. Ensure that the “Add Python.exe to PATH” checkbox is checked for easier command-line access

  • Note that the ‘Add Python.exe to Path’ checkbox is checked.在这里插入图片描述
  • Click the “Customize installation” option
    在这里插入图片描述
  • Keep the Optional Features unchanged. And then click the “Next” button.
    在这里插入图片描述
  • Enter the new path D:\Python\Python312 in the ‘Customize install location’ textbox.
    在这里插入图片描述
  • Click the “Install” button to initiate the installation process.
    在这里插入图片描述

4. Complete the installation process

  • When the installation is complete, you will see the message “Setup was successful” in the installation window.
    在这里插入图片描述
  • Now let’s check where Python is installed.
    在这里插入图片描述
  • python.exe is used for the command-line window, while pythonw.exe is utilized for the IDLE window.

III. Using Command-Line Python for Fun

1. Open the command-line Python from the start menu

  • Click the “Start Menu” button to open the start menu.在这里插入图片描述
  • Click the “Python 3.12 (64-bit)” option to launch the Python command-line window.
    在这里插入图片描述

2. Use the print function to display a message on the screen

  • Display a message “Welcome to Python World~”
    在这里插入图片描述

3. Perform basic operations, such as addition, using Python statements

  • Let me perform addition using Python statements.
    在这里插入图片描述
  • Note that Python has three types of formatted printing: % formatting, the format() function, and f-strings.

4. Type exit() and press Enter to quit the command-line Python

  • Type exit() function
    在这里插入图片描述
  • Press Enter to quit the commad-line Python

IV. Using Python with IDLE Window

1. Open the IDLE Python from the start menu

  • Click the “Start Menu” button to open the start menu.
    在这里插入图片描述
  • Click the “IDLE (Python 3.12 64-bit)” option to open the Python IDLE window.
    在这里插入图片描述

2. Perform operations interactively

  • Let me perform addition using Python statements.
    在这里插入图片描述

3. Write a Python program in the IDLE code editor window

  • Click the “File” menu and choose “New File…” to open an IDLE code window.
    在这里插入图片描述
  • Write a program to perform the addition of two numbers.
    在这里插入图片描述

4. Save the Python program at the spciefied location

  • Click on the File menu in the IDLE code window.
  • Choose the “Save As…” option.
    在这里插入图片描述
  • Navigate to the location where you want to save the file.
    在这里插入图片描述
  • Enter a suitable file name with the “.py” extension (e.g., “addition.py”).
    在这里插入图片描述
  • Click the “Save” button. Now, your Python program is saved at the specified location with the given file name.
    在这里插入图片描述

5. Run a Python program in IDLE

  • Open IDLE (Python GUI) on your computer.
    在这里插入图片描述
  • Open a Python program stored on my disk
    在这里插入图片描述
  • Choose the Python program at the designated location
    在这里插入图片描述
  • Click the “Open” button
    在这里插入图片描述
  • Press the F5 key or select “Run Module” from the “Run” menu. By doing this, IDLE will execute your Python script, and you should see the output in the interactive shell window. If there are no errors, your program will run successfully.
    在这里插入图片描述

V. Conclusion

  • Installing Python is a straightforward process that ensures a clean and functional Python environment on your computer.
  • Always use the official Python installer and follow recommended procedures for a hassle-free experience.

Feel free to reach out if you have any questions or encounter issues during the process. Let’s get started!


I. 引言

  • 今天,我将引导您完成在计算机上安装Python并使用命令行Python和IDLE的过程。

II. 安装Python

1. 从官方网站下载最新版本的Python

  • Python的官方网站是https://www.python.org/。
    在这里插入图片描述
  • 单击导航栏中的相应链接转到“下载”部分。
    在这里插入图片描述
  • 单击“下载Python 3.12.0”按钮
    在这里插入图片描述
  • 单击“立即下载”按钮将Python安装程序下载到计算机上的指定位置。
    在这里插入图片描述

2. 运行安装程序并遵循安装向导

  • 选择自定义来启用或禁用功能
    在这里插入图片描述

3. 确保选中了“添加Python.exe到PATH”复选框,以便于命令行访问

  • 注意“将Python.exe添加到路径”复选框已勾选。 在这里插入图片描述
  • 单击“自定义安装”选项
    在这里插入图片描述
  • 保持可选功能不变。然后单击“下一步”按钮。
    在这里插入图片描述
  • 在“自定义安装位置”文本框中输入新的路径D:\Python\Python312
    在这里插入图片描述
  • 单击“安装”按钮启动安装过程。
    在这里插入图片描述

4. 完成安装过程

  • 当安装完成后,您将在安装窗口中看到“设置成功”消息。
    在这里插入图片描述
  • 现在让我们检查一下Python安装在哪里。
    在这里插入图片描述
  • python.exe用于命令行窗口,而pythonw.exe用于IDLE窗口。

III. 使用命令行Python的乐趣

1. 从开始菜单打开命令行Python

  • 单击“开始菜单”按钮打开开始菜单。
    在这里插入图片描述
  • 单击“Python 3.12(64位)”选项以启动Python命令行窗口。
    在这里插入图片描述

2. 使用print函数在屏幕上显示消息

  • 显示一条消息“欢迎来到Python世界~”
    在这里插入图片描述

3. 使用Python语句执行基本操作,例如加法

  • 让我使用Python语句执行加法。
    在这里插入图片描述
  • 注意Python有三种格式化打印方式:%格式化、format()函数和f字符串。

4. 输入exit()并按Enter键退出命令行Python

  • 输入exit()函数
    在这里插入图片描述
  • 按Enter键退出命令行Python

这篇关于CEN02 - Installing Python on Your Computer的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/458977

相关文章

python: 多模块(.py)中全局变量的导入

文章目录 global关键字可变类型和不可变类型数据的内存地址单模块(单个py文件)的全局变量示例总结 多模块(多个py文件)的全局变量from x import x导入全局变量示例 import x导入全局变量示例 总结 global关键字 global 的作用范围是模块(.py)级别: 当你在一个模块(文件)中使用 global 声明变量时,这个变量只在该模块的全局命名空

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

nudepy,一个有趣的 Python 库!

更多资料获取 📚 个人网站:ipengtao.com 大家好,今天为大家分享一个有趣的 Python 库 - nudepy。 Github地址:https://github.com/hhatto/nude.py 在图像处理和计算机视觉应用中,检测图像中的不适当内容(例如裸露图像)是一个重要的任务。nudepy 是一个基于 Python 的库,专门用于检测图像中的不适当内容。该

pip-tools:打造可重复、可控的 Python 开发环境,解决依赖关系,让代码更稳定

在 Python 开发中,管理依赖关系是一项繁琐且容易出错的任务。手动更新依赖版本、处理冲突、确保一致性等等,都可能让开发者感到头疼。而 pip-tools 为开发者提供了一套稳定可靠的解决方案。 什么是 pip-tools? pip-tools 是一组命令行工具,旨在简化 Python 依赖关系的管理,确保项目环境的稳定性和可重复性。它主要包含两个核心工具:pip-compile 和 pip

HTML提交表单给python

python 代码 from flask import Flask, request, render_template, redirect, url_forapp = Flask(__name__)@app.route('/')def form():# 渲染表单页面return render_template('./index.html')@app.route('/submit_form',

Python QT实现A-star寻路算法

目录 1、界面使用方法 2、注意事项 3、补充说明 用Qt5搭建一个图形化测试寻路算法的测试环境。 1、界面使用方法 设定起点: 鼠标左键双击,设定红色的起点。左键双击设定起点,用红色标记。 设定终点: 鼠标右键双击,设定蓝色的终点。右键双击设定终点,用蓝色标记。 设置障碍点: 鼠标左键或者右键按着不放,拖动可以设置黑色的障碍点。按住左键或右键并拖动,设置一系列黑色障碍点

Python:豆瓣电影商业数据分析-爬取全数据【附带爬虫豆瓣,数据处理过程,数据分析,可视化,以及完整PPT报告】

**爬取豆瓣电影信息,分析近年电影行业的发展情况** 本文是完整的数据分析展现,代码有完整版,包含豆瓣电影爬取的具体方式【附带爬虫豆瓣,数据处理过程,数据分析,可视化,以及完整PPT报告】   最近MBA在学习《商业数据分析》,大实训作业给了数据要进行数据分析,所以先拿豆瓣电影练练手,网络上爬取豆瓣电影TOP250较多,但对于豆瓣电影全数据的爬取教程很少,所以我自己做一版。 目

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At