python创建窗口代码_python tkinter模块 创建窗口V1.2

1 #-*-coding:utf-8-*-

2 importos3 from tkinter import *

4

5 root=Tk()6 root.title('执行窗口')7

8 """

9 V1.210

11 """

12 defadd(a,b):13 a=int(a)14 b=int(b)15 sum=eval('a+b') #执行表达式

16 print('a+b=',sum)17

18 returnsum19

20 #调用其他函数fun(asg1,asg2)

21 defgo_func():22 #第一个参数,调用函数,第2个参数,函数参数

23 func =n51.get()24 asgs =n52.get()25 func = eval(func) #转为函数

26 #print(type(func))

27 #无参数

28 if len(asgs) ==0:29 func()30 else:31 #多参数j,分割

32 asg=asgs.split(',')33 func(*asg)34

35 #--------------------------------------

36 #清空文本框内容

37 defclear():38 text.delete('1.0','end')39

40 #执行

41 defshow():42 print('hello')43 text.insert('1.0', "hello\n")44

45 #文本信息

46 definsert_text(msg):47 text.insert(INSERT,'%s'%msg)48

49 defget_app_deviceid():50 print('请先检查是否连接了设备,是否启动了开发者选项,是否开启了adb调试....')51 #查看连接设备

52 out=os.popen('adb devices').read()53 patter= re.compile(r"[a-zA-Z0-9]+")54 device_list=patter.findall(out)55 #print(device_list)

56 print('设备连接信息:--------------------------------------\n',out)57

58 #调取text

59 insert_text(out)60

61 #存放设备号

62 deviceid=[]63 #提取设备号,存放到deviceid中,

64 if 'device' indevice_list:65 #print('设备号:',deviceid)

66 #多个设备,

67 n=4

68 while len(device_list)>n:69 deviceid.append(device_list[n])70 n=n+2

71 print('设备号:',deviceid)72 else:73 print('无此设备,请检查是否连接设备。')74 returnout75

76

77 #执行cmd命令

78 def execute_cmd(cmd='adb devices'):79 cmd=e1.get()80 print(cmd)81 out =os.popen(cmd).read()82 print(out)83 returnout84

85 defget_text():86 #获取entry输入的文字

87 str2=""

88 str2=e1.get()89

90 #在光标处插入文字

91 text.insert("insert", str2)92

93 #-grid-----------------------------------------------------------------------

94

95 #label控件

96 Label(root,text="输入命令:").grid(row=0,column=0,sticky=E) #靠右

97 Label(root,text="本地目录:").grid(row=1,column=0,sticky=E) #靠右

98 Label(root, text='手机目录').grid(row=2,column=0,sticky=E) #靠左

99

100 Label(root, text='显示结果',width=15).grid(row=3,column=1,sticky=W) #靠左

101

102 #输入控件

103 e1=Entry(root,width=30)104 e1.grid(row=0,column=1,padx=5,pady=5)105 e2=Entry(root,width=30)106 e2.grid(row=1,column=1,padx=5,pady=5)107 e3=Entry(root,width=30)108 e3.grid(row=2,column=1,padx=5,pady=5)109

110

111 #命令控件

112 #b1=Button(root,text="点击看看吧",command=show,height=1,width=15,fg='blue').grid(row=2,column=1)

113 #Label(root, text='显示结果', width=15, height=1).grid(row=2,column=1,sticky=W) #靠左

114 #grid(row=1,column=2),row,行,从0开始,column列从0开始;

115 b1=Button(root,text="执行命令",command=get_text,height=1,width=15,fg='blue').grid(row=0,column=2,padx=5, pady=5)116 b2=Button(root,text="安装包",command=show,height=1,width=15,fg='blue').grid(row=1,column=2,padx=5, pady=5)117

118 b3=Button(root,text="查看设备",command=get_app_deviceid,height=1,width=15,fg='blue').grid(row=4,column=0,padx=5, pady=5)119 b4=Button(root,text="清空",command=clear,height=1,width=15,fg='black').grid(row=4,column=2,padx=5, pady=5)120

121

122

123 #显示结果,text控件

124 text = Text(root, width=30, font =('Verdana',10),fg='blue')125 text.grid(row=4,column=1,rowspan=3)126

127

128 #调用函数

129 Label(root, text='调用函数').grid(row=8,column=0)130 Label(root, text='输入函数名').grid(row=8,column=1)131 Label(root, text='输入参数').grid(row=8,column=2)132

133 #调用函数

134 b5= Button(root,text = "加法",command = go_func,width = 15).grid(row = 9,column = 0,padx=5, pady=5)135 #输入函数名

136 var1 =StringVar()137 n51 = Entry(root,width = 30,textvariable =var1)138 var1.set("add")139 n51.grid(row = 9,column = 1)140

141 #输入函数参数

142 var2 =StringVar()143 n52 = Entry(root,width = 30,textvariable =var2)144 var2.set("a,b")145 n52.grid(row = 9,column = 2)146

147

148 root.mainloop()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值