使用Python做一个简易的选课小程序

编写选课程序。左侧列表框显示学生可以选择的课程名称,右侧列表框显示学生已经选择的课程名通过四个按钮再两个列表框中移动数据项。from tkinter import *from tkinter import ttkbillwindows=Tk()billwindows.title("Bill选课系统")def callbutton1(): for i in theLeftBox.curselection(): theRightBox.insert(0, theLeftBox
摘要由CSDN通过智能技术生成

编写选课程序。左侧列表框显示学生可以选择的课程名称,右侧列表框显示学生已经选择的课程名通过四个按钮再两个列表框中移动数据项。

from tkinter import *
from tkinter import  ttk
billwindows=Tk()
billwindows.title("Bill选课系统")
def callbutton1():
    for i in theLeftBox.curselection():
        theRightBox.insert(0, theLeftBox.get(i))
        theLeftBox.delete(i)


def callbutton2():
    for i in theRightBox.curselection():
        theLeftBox.insert(0, theRightBox.get(i))
        theRightBox.delete(i)


def callbutton3
  • 7
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值