Guest User

Untitled

a guest
Jan 24th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from Tkinter import *
  4. from random import uniform
  5. mini = 1
  6. maxi = 2
  7. n = 5
  8. def button_clicked():
  9. for i in range(0,n):
  10. text_out.insert(END, str(uniform(mini, maxi))+"\n")
  11. root=Tk()
  12. root.title(u"Генератор случайных чисел с заданием параметров")
  13. label_title = Label(root, text = u"Генератор случайных чисел с заданием параметров")
  14. label_title.pack()
  15. button_test = Button(root, text=u"Клик", command=button_clicked)
  16. button_test.pack()
  17. text_out=Text(root,height=7,width=7,font='Arial 14',wrap=WORD)
  18. text_out.pack()
  19. root.mainloop()
Add Comment
Please, Sign In to add comment