Guest User

Untitled

a guest
Mar 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. from Tkinter import *
  2. import os
  3. import subprocess
  4.  
  5. root = Tk()
  6. root.title("MUT Tester")
  7. root.geometry("500x500")
  8.  
  9. def button():
  10.  
  11. cmd= os.system("adb devices")
  12.  
  13.  
  14. b = Button(root, text="Enter", width=30, height=2, command = lambda:(button))
  15. b.pack()
  16.  
  17. root.mainloop()
  18.  
  19. b = Button(root, text="Enter", width=30, height=2, command = lambda:(button))
Add Comment
Please, Sign In to add comment