【Python入门系列】第八篇:Python中GUI编程和图形界面设计

简介: Python中的GUI编程是指使用Python语言创建图形用户界面(GUI)的过程。通过GUI,用户可以与程序进行交互,通过按钮、菜单、文本框等控件来操作程序。

前言

Python中的GUI编程是指使用Python语言创建图形用户界面(GUI)的过程。通过GUI,用户可以与程序进行交互,通过按钮、菜单、文本框等控件来操作程序。

Python提供了多个库和框架来实现GUI编程,其中最常用的是Tkinter、wxPython、PyQt和PyGTK等。这些库提供了丰富的控件和功能,使开发者能够轻松地创建各种类型的图形界面。

在GUI编程中,通常使用窗口(Window)作为程序的主要界面。可以在窗口中添加各种控件,如按钮、标签、文本框、复选框等,用于与用户进行交互。通过事件处理机制,可以对用户的操作进行响应,执行相应的函数或方法。

图形界面设计是指创建具有良好用户体验的界面。在设计过程中,需要考虑界面布局、颜色搭配、控件的摆放位置等因素,以确保用户能够方便地使用程序。

一、Tkinter、PyQt和wxPython库简单使用

1、Tkinter简单使用

Tkinter 是 Python 中常用的 GUI 编程库,用于创建图形用户界面。下面是 Tkinter 的简单使用说明:

  1. 导入 Tkinter 模块:
import tkinter as tk
  1. 创建主窗口:
root = tk.Tk()
  1. 添加控件:
    可以添加各种控件,如标签、按钮、文本框等。例如,添加一个标签和一个按钮:
label = tk.Label(root, text="Hello, Tkinter!")
   button = tk.Button(root, text="Click me!")
  1. 布局控件:
    使用网格布局(grid)或包装布局(pack)来安排控件的位置。例如,使用网格布局将标签和按钮放置在窗口中:
label.grid(row=0, column=0)
   button.grid(row=1, column=0)
  1. 运行主循环:
root.mainloop()

完整代码:

import tkinter as tk

# 创建主窗口
window = tk.Tk()
window.title("GUI编程示例")

# 创建标签
label = tk.Label(window, text="欢迎来到GUI编程!", font=("Arial", 16))
label.pack()

# 创建按钮
button = tk.Button(window, text="点击我!", command=lambda: print("你点击了按钮!"))
button.pack()

# 运行主循环
window.mainloop()

2、PyQt简单使用

PyQt 是 Python 中常用的 GUI 编程库,用于创建图形用户界面。下面是 PyQt 的简单使用说明:

  1. 导入 PyQt 模块:
from PyQt5 import QtWidgets
  1. 创建应用程序对象:
app = QtWidgets.QApplication([])
  1. 创建主窗口:
window = QtWidgets.QMainWindow()
  1. 添加控件:
    可以添加各种控件,如标签、按钮、文本框等。例如,添加一个标签和一个按钮:
label = QtWidgets.QLabel("Hello, PyQt!")
   button = QtWidgets.QPushButton("Click me!")
  1. 设置布局:
    使用布局管理器来安排控件的位置和大小。常用的布局管理器有 QVBoxLayout、QHBoxLayout、QGridLayout 等。例如,使用 QVBoxLayout 将标签和按钮放置在窗口中:
layout = QtWidgets.QVBoxLayout()
   layout.addWidget(label)
   layout.addWidget(button)
  1. 将布局设置给主窗口:
central_widget = QtWidgets.QWidget()
   central_widget.setLayout(layout)
   window.setCentralWidget(central_widget)
  1. 显示窗口:
window.show()
  1. 运行应用程序的主循环:
app.exec_()

完整代码:

from PyQt5 import QtWidgets

# 创建应用程序
app = QtWidgets.QApplication([])

# 创建主窗口
window = QtWidgets.QWidget()
window.setWindowTitle("GUI编程示例")

# 创建标签
label = QtWidgets.QLabel("欢迎来到GUI编程!")
label.setFont(QtWidgets.QFont("Arial", 16))

# 创建按钮
button = QtWidgets.QPushButton("点击我!")
button.clicked.connect(lambda: print("你点击了按钮!"))

# 创建布局
layout = QtWidgets.QVBoxLayout()
layout.addWidget(label)
layout.addWidget(button)

# 设置主窗口布局
window.setLayout(layout)

# 显示主窗口
window.show()

# 运行应用程序
app.exec_()

3、wxPython简单使用

wxPython 是 Python 中常用的 GUI 编程库,用于创建图形用户界面。下面是 wxPython 的简单使用说明:

  1. 导入 wxPython 模块:
import wx
  1. 创建应用程序对象:
app = wx.App()
  1. 创建顶级窗口:
frame = wx.Frame(None, title="Hello, wxPython!")
  1. 添加控件:
    可以添加各种控件,如标签、按钮、文本框等。例如,添加一个标签和一个按钮:
panel = wx.Panel(frame)
   label = wx.StaticText(panel, label="Hello, wxPython!")
   button = wx.Button(panel, label="Click me!")
  1. 设置布局:
    使用布局管理器来安排控件的位置和大小。常用的布局管理器有 BoxSizer、GridSizer、FlexGridSizer 等。例如,使用 BoxSizer 将标签和按钮放置在窗口中:
sizer = wx.BoxSizer(wx.VERTICAL)
   sizer.Add(label, 0, wx.ALL, 10)
   sizer.Add(button, 0, wx.ALL, 10)
   panel.SetSizer(sizer)
  1. 显示窗口:
frame.Show()
  1. 运行应用程序的主循环:
app.MainLoop()

完整代码:

import wx

# 创建应用程序
app = wx.App()

# 创建主窗口
frame = wx.Frame(None, title="GUI编程示例")

# 创建面板
panel = wx.Panel(frame)

# 创建标签
label = wx.StaticText(panel, label="欢迎来到GUI编程!", pos=(50, 50))
label.SetFont(wx.Font(16, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))

# 创建按钮
button = wx.Button(panel, label="点击我!", pos=(50, 100))
button.Bind(wx.EVT_BUTTON, lambda event: print("你点击了按钮!"))

# 显示主窗口
frame.Show()

# 运行应用程序
app.MainLoop()

二、Tkinter、PyQt和wxPython库实现计算器

1、Tkinter实现计算器

import tkinter as tk

def calculate():
    expression = entry.get()
    try:
        result = eval(expression)
        result_label.config(text="结果: " + str(result))
    except:
        result_label.config(text="无效的表达式")

def clear():
    entry.delete(0, tk.END)
    result_label.config(text="结果:")

window = tk.Tk()
window.title("复杂计算器")

entry = tk.Entry(window, width=30)
entry.pack()

button_frame = tk.Frame(window)
button_frame.pack()

calculate_button = tk.Button(button_frame, text="计算", command=calculate)
calculate_button.grid(row=0, column=0)

clear_button = tk.Button(button_frame, text="清除", command=clear)
clear_button.grid(row=0, column=1)

result_label = tk.Label(window, text="结果:")
result_label.pack()

window.mainloop()

2、PyQt实现计算器

from PyQt5 import QtWidgets

class Calculator(QtWidgets.QWidget):
    def __init__(self):
        super().__init__()
        self.setWindowTitle("复杂计算器")
        self.layout = QtWidgets.QVBoxLayout()
        self.entry = QtWidgets.QLineEdit()
        self.layout.addWidget(self.entry)

        button_frame = QtWidgets.QWidget()
        button_layout = QtWidgets.QHBoxLayout(button_frame)
        self.layout.addWidget(button_frame)

        calculate_button = QtWidgets.QPushButton("计算")
        calculate_button.clicked.connect(self.calculate)
        button_layout.addWidget(calculate_button)

        clear_button = QtWidgets.QPushButton("清除")
        clear_button.clicked.connect(self.clear)
        button_layout.addWidget(clear_button)

        self.result_label = QtWidgets.QLabel("结果:")
        self.layout.addWidget(self.result_label)

        self.setLayout(self.layout)

    def calculate(self):
        expression = self.entry.text()
        try:
            result = eval(expression)
            self.result_label.setText("结果: " + str(result))
        except:
            self.result_label.setText("无效的表达式")

    def clear(self):
        self.entry.clear()
        self.result_label.setText("结果:")

app = QtWidgets.QApplication([])
calculator = Calculator()
calculator.show()
app.exec_()

3、wxPython实现计算器

import wx

class CalculatorFrame(wx.Frame):
    def __init__(self):
        super().__init__(parent=None, title="复杂计算器")
        self.panel = wx.Panel(self)
        self.entry = wx.TextCtrl(self.panel)
        self.calculate_button = wx.Button(self.panel, label="计算")
        self.clear_button = wx.Button(self.panel, label="清除")
        self.result_label = wx.StaticText(self.panel, label="结果:")

        self.calculate_button.Bind(wx.EVT_BUTTON, self.calculate)
        self.clear_button.Bind(wx.EVT_BUTTON, self.clear)

        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.entry, proportion=1, flag=wx.EXPAND)
        sizer.Add(self.calculate_button, flag=wx.EXPAND)
        sizer.Add(self.clear_button, flag=wx.EXPAND)
        sizer.Add(self.result_label, flag=wx.EXPAND)

        self.panel.SetSizer(sizer)

    def calculate(self, event):
        expression = self.entry.GetValue()
        try:
            result = eval(expression)
            self.result_label.SetLabel("结果: " + str(result))
        except:
            self.result_label.SetLabel("无效的表达式")

    def clear(self, event):
        self.entry.Clear()
        self.result_label.SetLabel("结果:")

app = wx.App()
frame = CalculatorFrame()
frame.Show()
app.MainLoop()

三、Tkinter、PyQt和wxPython库简单QQ聊天

1、Tkinter实现QQ聊天

import tkinter as tk

def send_message():
    message = entry.get()
    # 发送消息的逻辑处理
    print("发送消息:", message)
    entry.delete(0, tk.END)

window = tk.Tk()
window.title("QQ聊天系统")
window.geometry("400x300")

message_box = tk.Text(window)
message_box.pack(pady=10)

entry = tk.Entry(window)
entry.pack(pady=10)

send_button = tk.Button(window, text="发送", command=send_message)
send_button.pack()

window.mainloop()

2、PyQt实现QQ聊天

from PyQt5 import QtWidgets

def send_message():
    message = entry.text()
    # 发送消息的逻辑处理
    print("发送消息:", message)
    entry.clear()

app = QtWidgets.QApplication([])
window = QtWidgets.QWidget()
window.setWindowTitle("QQ聊天系统")
window.setGeometry(100, 100, 400, 300)

message_box = QtWidgets.QTextEdit(window)
message_box.setGeometry(10, 10, 380, 200)

entry = QtWidgets.QLineEdit(window)
entry.setGeometry(10, 220, 300, 30)

send_button = QtWidgets.QPushButton(window, text="发送")
send_button.setGeometry(320, 220, 60, 30)
send_button.clicked.connect(send_message)

window.show()
app.exec_()

3、wxPython实现QQ聊天

import wx

class ChatWindow(wx.Frame):
    def __init__(self):
        super().__init__(None, title="QQ聊天系统", size=(400, 300))
        panel = wx.Panel(self)
        sizer = wx.BoxSizer(wx.VERTICAL)
        
        self.message_box = wx.TextCtrl(panel, style=wx.TE_MULTILINE)
        sizer.Add(self.message_box, 1, wx.EXPAND | wx.ALL, 10)
        
        self.entry = wx.TextCtrl(panel)
        sizer.Add(self.entry, 0, wx.EXPAND | wx.ALL, 10)
        
        send_button = wx.Button(panel, label="发送")
        sizer.Add(send_button, 0, wx.ALIGN_CENTER | wx.ALL, 10)
        send_button.Bind(wx.EVT_BUTTON, self.send_message)
        
        panel.SetSizer(sizer)
        self.Show()

    def send_message(self, event):
        message = self.entry.GetValue()
        # 发送消息的逻辑处理
        print("发送消息:", message)
        self.entry.Clear()

app = wx.App()
ChatWindow()
app.MainLoop()

四、Tkinter、PyQt和wxPython库贪吃蛇游戏

1、Tkinter实现贪吃蛇游戏

import tkinter as tk
import random

WIDTH = 400
HEIGHT = 400
DELAY = 100
DOT_SIZE = 20

class SnakeGame(tk.Canvas):
    def __init__(self, master):
        super().__init__(master, width=WIDTH, height=HEIGHT, background="black")
        
        self.snake = [(100, 100), (80, 100), (60, 100)]
        self.direction = "Right"
        self.food = self.create_food()
        self.score = 0
        
        self.bind_all("<Key>", self.on_key_press)
        self.pack()
        
        self.after(DELAY, self.move_snake)
    
    def create_food(self):
        x = random.randint(1, (WIDTH-DOT_SIZE) / DOT_SIZE) * DOT_SIZE
        y = random.randint(1, (HEIGHT-DOT_SIZE) / DOT_SIZE) * DOT_SIZE
        return self.create_oval(x, y, x+DOT_SIZE, y+DOT_SIZE, fill="white")
    
    def move_snake(self):
        head_x, head_y = self.snake[0]
        
        if self.direction == "Right":
            new_head = (head_x + DOT_SIZE, head_y)
        elif self.direction == "Left":
            new_head = (head_x - DOT_SIZE, head_y)
        elif self.direction == "Up":
            new_head = (head_x, head_y - DOT_SIZE)
        else:
            new_head = (head_x, head_y + DOT_SIZE)
        
        self.snake.insert(0, new_head)
        
        if self.check_collision():
            self.game_over()
        else:
            self.delete(self.snake[-1])
            if self.snake[0] == self.food:
                self.score += 1
                self.create_food()
            else:
                self.snake.pop()
            
            for x, y in self.snake:
                self.create_rectangle(x, y, x+DOT_SIZE, y+DOT_SIZE, fill="green")
            
            self.after(DELAY, self.move_snake)
    
    def check_collision(self):
        head_x, head_y = self.snake[0]
        return (
            head_x < 0 or
            head_x >= WIDTH or
            head_y < 0 or
            head_y >= HEIGHT or
            (head_x, head_y) in self.snake[1:]
        )
    
    def game_over(self):
        self.delete(tk.ALL)
        self.create_text(
            WIDTH/2, HEIGHT/2,
            text=f"Game Over! Score: {self.score}",
            fill="white",
            font=("Arial", 20),
        )
    
    def on_key_press(self, event):
        key = event.keysym
        if key == "Right" and self.direction != "Left":
            self.direction = "Right"
        elif key == "Left" and self.direction != "Right":
            self.direction = "Left"
        elif key == "Up" and self.direction != "Down":
            self.direction = "Up"
        elif key == "Down" and self.direction != "Up":
            self.direction = "Down"

root = tk.Tk()
root.title("Snake Game")
snake_game = SnakeGame(root)
root.mainloop()

2、PyQt实现贪吃蛇游戏

from PyQt5 import QtWidgets, QtCore, QtGui
import random
WIDTH = 400
HEIGHT = 400
DELAY = 100
DOT_SIZE = 20

class SnakeGame(QtWidgets.QWidget):
    def __init__(self):
        super().__init__()

        self.snake = [(100, 100), (80, 100), (60, 100)]
        self.direction = "Right"
        self.food = self.create_food()
        self.score = 0

        self.timer = QtCore.QTimer(self)
        self.timer.timeout.connect(self.move_snake)
        self.timer.start(DELAY)

        self.setWindowTitle("贪吃蛇游戏")
        self.setGeometry(100, 100, WIDTH, HEIGHT)
        self.show()

    def paintEvent(self, event):
        qp = QtGui.QPainter()
        qp.begin(self)
        self.draw_snake(qp)
        self.draw_food(qp)
        qp.end()

    def draw_snake(self, qp):
        qp.setBrush(QtGui.QColor(0, 255, 0))
        for x, y in self.snake:
            qp.drawRect(x, y, DOT_SIZE, DOT_SIZE)

    def draw_food(self, qp):
        qp.setBrush(QtGui.QColor(255, 255, 255))
        qp.drawEllipse(*self.food, DOT_SIZE, DOT_SIZE)

    def create_food(self):
        x = random.randint(1, (WIDTH-DOT_SIZE) / DOT_SIZE) * DOT_SIZE
        y = random.randint(1, (HEIGHT-DOT_SIZE) / DOT_SIZE) * DOT_SIZE
        return (x, y)

    def move_snake(self):
        head_x, head_y = self.snake[0]

        if self.direction == "Right":
            new_head = (head_x + DOT_SIZE, head_y)
        elif self.direction == "Left":
            new_head = (head_x - DOT_SIZE, head_y)
        elif self.direction == "Up":
            new_head = (head_x, head_y - DOT_SIZE)
        else:
            new_head = (head_x, head_y + DOT_SIZE)

        self.snake.insert(0, new_head)

        if self.check_collision():
            self.game_over()
        else:
            self.snake.pop()

            if self.snake[0] == self.food:
                self.score += 1
                self.create_food()

        self.update()

    def check_collision(self):
        head_x, head_y = self.snake[0]
        return (
            head_x < 0 or
            head_x >= WIDTH or
            head_y < 0 or
            head_y >= HEIGHT or
            (head_x, head_y) in self.snake[1:]
        )

    def game_over(self):
        self.timer.stop()
        QtWidgets.QMessageBox.information(self, "游戏结束", f"游戏结束!得分: {self.score}")

    def keyPressEvent(self, event):
        key = event.key()

        if key == QtCore.Qt.Key_Right and self.direction != "Left":
            self.direction = "Right"
        elif key == QtCore.Qt.Key_Left and self.direction != "Right":
            self.direction = "Left"
        elif key == QtCore.Qt.Key_Up and self.direction != "Down":
            self.direction = "Up"
        elif key == QtCore.Qt.Key_Down and self.direction != "Up":
            self.direction = "Down"

app = QtWidgets.QApplication([])
snake_game = SnakeGame()
app.exec_()```


##  3、wxPython实现贪吃蛇游戏

import wx
import random

WIDTH = 400
HEIGHT = 400
DELAY = 100
DOT_SIZE = 20

class SnakeGame(wx.Frame):

def __init__(self):
    super().__init__(None, title="贪吃蛇游戏", size=(WIDTH, HEIGHT))
    
    self.snake = [(100, 100), (80, 100), (60, 100)]
    self.direction = "Right"
    self.food = self.create_food()
    self.score = 0
    
    self.timer = wx.Timer(self)
    self.Bind(wx.EVT_TIMER, self.move_snake, self.timer)
    self.timer.Start(DELAY)
    
    self.Bind(wx.EVT_PAINT, self.on_paint)
    self.Bind(wx.EVT_KEY_DOWN, self.on_key_down)
    
    self.Centre()
    self.Show()

def on_paint(self, event):
    dc = wx.PaintDC(self)
    self.draw_snake(dc)
    self.draw_food(dc)

def draw_snake(self, dc):
    dc.SetBrush(wx.Brush(wx.Colour(0, 255, 0)))
    for x, y in self.snake:
        dc.DrawRectangle(x, y, DOT_SIZE, DOT_SIZE)

def draw_food(self, dc):
    dc.SetBrush(wx.Brush(wx.Colour(255, 255, 255)))
    dc.DrawCircle(*self.food, DOT_SIZE//2)

def create_food(self):
    x = random.randint(1, (WIDTH-DOT_SIZE) // DOT_SIZE) * DOT_SIZE
    y = random.randint(1, (HEIGHT-DOT_SIZE) // DOT_SIZE) * DOT_SIZE
    return (x, y)

def move_snake(self, event):
    head_x, head_y = self.snake[0]
    
    if self.direction == "Right":
        new_head = (head_x + DOT_SIZE, head_y)
    elif self.direction == "Left":
        new_head = (head_x - DOT_SIZE, head_y)
    elif self.direction == "Up":
        new_head = (head_x, head_y - DOT_SIZE)
    else:
        new_head = (head_x, head_y + DOT_SIZE)
    
    self.snake.insert(0, new_head)
    
    if self.check_collision():
        self.game_over()
    else:
        self.snake.pop()
        
        if self.snake[0] == self.food:
            self.score += 1
            self.food = self.create_food()
    
    self.Refresh()

def check_collision(self):
    head_x, head_y = self.snake[0]
    return (
        head_x < 0 or
        head_x >= WIDTH or
        head_y < 0 or
        head_y >= HEIGHT or
        (head_x, head_y) in self.snake[1:]
    )

def game_over(self):
    self.timer.Stop()
    wx.MessageBox(f"游戏结束!得分: {self.score}", "游戏结束")
    self.Close()

def on_key_down(self, event):
    key_code = event.GetKeyCode()
    
    if key_code == wx.WXK_RIGHT and self.direction != "Left":
        self.direction = "Right"
    elif key_code == wx.WXK_LEFT and self.direction != "Right":
        self.direction = "Left"
    elif key_code == wx.WXK_UP and self.direction != "Down":
        self.direction = "Up"
    elif key_code == wx.WXK_DOWN and self.direction != "Up":
        self.direction = "Down"

app = wx.App()
SnakeGame()
app.MainLoop()


#  总结
目录
相关文章
|
27天前
|
存储 数据采集 人工智能
Python编程入门:从零基础到实战应用
本文是一篇面向初学者的Python编程教程,旨在帮助读者从零开始学习Python编程语言。文章首先介绍了Python的基本概念和特点,然后通过一个简单的例子展示了如何编写Python代码。接下来,文章详细介绍了Python的数据类型、变量、运算符、控制结构、函数等基本语法知识。最后,文章通过一个实战项目——制作一个简单的计算器程序,帮助读者巩固所学知识并提高编程技能。
|
16天前
|
Unix Linux 程序员
[oeasy]python053_学编程为什么从hello_world_开始
视频介绍了“Hello World”程序的由来及其在编程中的重要性。从贝尔实验室诞生的Unix系统和C语言说起,讲述了“Hello World”作为经典示例的起源和流传过程。文章还探讨了C语言对其他编程语言的影响,以及它在系统编程中的地位。最后总结了“Hello World”、print、小括号和双引号等编程概念的来源。
102 80
|
5天前
|
Python
[oeasy]python055_python编程_容易出现的问题_函数名的重新赋值_print_int
本文介绍了Python编程中容易出现的问题,特别是函数名、类名和模块名的重新赋值。通过具体示例展示了将内建函数(如`print`、`int`、`max`)或模块名(如`os`)重新赋值为其他类型后,会导致原有功能失效。例如,将`print`赋值为整数后,无法再用其输出内容;将`int`赋值为整数后,无法再进行类型转换。重新赋值后,这些名称失去了原有的功能,可能导致程序错误。总结指出,已有的函数名、类名和模块名不适合覆盖赋新值,否则会失去原有功能。如果需要使用类似的变量名,建议采用其他命名方式以避免冲突。
27 14
|
14天前
|
分布式计算 大数据 数据处理
技术评测:MaxCompute MaxFrame——阿里云自研分布式计算框架的Python编程接口
随着大数据和人工智能技术的发展,数据处理的需求日益增长。阿里云推出的MaxCompute MaxFrame(简称“MaxFrame”)是一个专为Python开发者设计的分布式计算框架,它不仅支持Python编程接口,还能直接利用MaxCompute的云原生大数据计算资源和服务。本文将通过一系列最佳实践测评,探讨MaxFrame在分布式Pandas处理以及大语言模型数据处理场景中的表现,并分析其在实际工作中的应用潜力。
49 2
|
28天前
|
小程序 开发者 Python
探索Python编程:从基础到实战
本文将引导你走进Python编程的世界,从基础语法开始,逐步深入到实战项目。我们将一起探讨如何在编程中发挥创意,解决问题,并分享一些实用的技巧和心得。无论你是编程新手还是有一定经验的开发者,这篇文章都将为你提供有价值的参考。让我们一起开启Python编程的探索之旅吧!
46 10
|
27天前
|
人工智能 数据挖掘 开发者
探索Python编程之美:从基础到进阶
本文是一篇深入浅出的Python编程指南,旨在帮助初学者理解Python编程的核心概念,并引导他们逐步掌握更高级的技术。文章不仅涵盖了Python的基础语法,还深入探讨了面向对象编程、函数式编程等高级主题。通过丰富的代码示例和实践项目,读者将能够巩固所学知识,提升编程技能。无论你是编程新手还是有一定经验的开发者,这篇文章都将为你提供有价值的参考和启示。让我们一起踏上Python编程的美妙旅程吧!
|
8月前
|
人工智能 Java Python
python入门(二)安装第三方包
python入门(二)安装第三方包
108 1
|
3月前
|
机器学习/深度学习 Python
【10月更文挑战第5天】「Mac上学Python 6」入门篇6 - 安装与使用Anaconda
本篇将详细介绍如何在Mac系统上安装和配置Anaconda,如何创建虚拟环境,并学习如何使用 `pip` 和 `conda` 管理Python包,直到成功运行第一个Python程序。通过本篇,您将学会如何高效地使用Anaconda创建和管理虚拟环境,并使用Python开发。
84 4
【10月更文挑战第5天】「Mac上学Python 6」入门篇6 - 安装与使用Anaconda
|
3月前
|
IDE 开发工具 iOS开发
【10月更文挑战第3天】「Mac上学Python 3」入门篇3 - 安装Python与开发环境配置
本篇将详细介绍如何在Mac系统上安装Python,并配置Python开发环境。内容涵盖Python的安装、pip包管理工具的配置与国内镜像源替换、安装与配置PyCharm开发工具,以及通过PyCharm编写并运行第一个Python程序。通过本篇的学习,用户将完成Python开发环境的搭建,为后续的Python编程工作打下基础。
273 2
【10月更文挑战第3天】「Mac上学Python 3」入门篇3 - 安装Python与开发环境配置
|
3月前
|
iOS开发 MacOS Python
【10月更文挑战第1天】「Mac上学Python 1」入门篇1 - 安装Typora与Markdown编辑技巧
本篇将详细介绍如何在Mac系统上安装Typora这款简洁高效的Markdown编辑器,并学习Markdown常用语法。通过本篇,用户能够准备好记录学习笔记的工具,并掌握基本的文档编辑与排版技巧,为后续学习提供便利。
177 1
【10月更文挑战第1天】「Mac上学Python 1」入门篇1 - 安装Typora与Markdown编辑技巧