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脚本实现自动删除C盘临时文件夹

《Python脚本实现自动删除C盘临时文件夹》在日常使用电脑的过程中,临时文件夹往往会积累大量的无用数据,占用宝贵的磁盘空间,下面我们就来看看Python如何通过脚本实现自动删除C盘临时文件夹吧... 目录一、准备工作二、python脚本编写三、脚本解析四、运行脚本五、案例演示六、注意事项七、总结在日常使用

Python将大量遥感数据的值缩放指定倍数的方法(推荐)

《Python将大量遥感数据的值缩放指定倍数的方法(推荐)》本文介绍基于Python中的gdal模块,批量读取大量多波段遥感影像文件,分别对各波段数据加以数值处理,并将所得处理后数据保存为新的遥感影像... 本文介绍基于python中的gdal模块,批量读取大量多波段遥感影像文件,分别对各波段数据加以数值处

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Python进阶之Excel基本操作介绍

《Python进阶之Excel基本操作介绍》在现实中,很多工作都需要与数据打交道,Excel作为常用的数据处理工具,一直备受人们的青睐,本文主要为大家介绍了一些Python中Excel的基本操作,希望... 目录概述写入使用 xlwt使用 XlsxWriter读取修改概述在现实中,很多工作都需要与数据打交

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat

利用Python编写一个简单的聊天机器人

《利用Python编写一个简单的聊天机器人》这篇文章主要为大家详细介绍了如何利用Python编写一个简单的聊天机器人,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 使用 python 编写一个简单的聊天机器人可以从最基础的逻辑开始,然后逐步加入更复杂的功能。这里我们将先实现一个简单的

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一