赞
踩
- # 定义空的课程表
- course_table = {}
- # 定义课程总数的变量
- total_courses = 0
-
- # 输出欢迎信息
- print("欢迎使用课程表程序!")
-
- # 循环输入课程信息,并保存到课程表
- while True:
- # 输入课程名称
- course_name = input("请输入课程名称:")
- # 输入上课地点
- course_location = input("请输入上课地点:")
- # 输入上课时间
- course_time = input("请输入上课时间:")
-
- # 将新课程添加到课程表中
- total_courses += 1 # 更新课程总数
- course_table[total_courses] = {'name': course_name, 'location': course_location, 'time': course_time}
-
- # 打印当前所有的课程信息
- print("当前的课程表:")
- for course_id, course_info in course_table.items():
- print(f"{course_id}. {course_info['name']} 在 {course_info['location']} 上课 时间为 {course_info['time']}")
-
- # 询问用户是否继续添加课程
- another_course = input("是否需要添加更多的课程?(Y/N)")
- if another_course.lower() == 'n&
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。