在这个教程中,我们将学习如何使用Python创建一个简单的待办事项列表应用程序。这个应用程序将包括添加、删除和显示待办事项的功能。

快速概览

安装Python

首先,确保你的计算机上安装了Python。你可以从Python官网下载并安装。

创建基本Python脚本

打开文本编辑器,创建一个名为 todo_list.py 的文件。然后,输入以下代码:

# todo_list.py

print("Welcome to the To-Do List App!")

保存并关闭文件。

使用列表存储数据

现在,让我们修改脚本,以便它可以存储待办事项列表。

# todo_list.py

print("Welcome to the To-Do List App!")
tasks = []

while True:
    print("\n1. Add a task")
    print("2. Show all tasks")
    print("3. Exit")

    choice = input("Enter your choice: ")

    if choice == "1":
        task = input("Enter your task: ")
        tasks.append(task)
        print("Task added successfully!")
    elif choice == "2":
        print("Your tasks:")
        for task in tasks:
            print(task)
    elif choice == "3":
        print("Exiting the application.")
        break
    else:
        print("Invalid choice. Please try again.")

运行这个脚本,开始使用你的待办事项列表应用程序。

图片示例

Python Logo

To-Do List Example