Facebook
From Roko, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 146
  1. from tkinter import*
  2.  
  3. a=Tk()
  4. a.title("Renudula")
  5. a.geometry("500x500")
  6. a.config(bg="cyan")
  7.  
  8. #labels
  9.  
  10. #1.
  11. ispis = Label(a, text = "Hello world" , bg = "black"
  12.               , fg="white", font=("Arial",12))
  13. ispis.place(x =50, y=50)
  14.  
  15. #2.
  16. ispis = Label(a, text = "Hello world" , bg = "black"
  17.               , fg="white", font=("Arial",12))
  18. ispis.place(x =50, y=100)
  19. #3.
  20. ispis = Label(a, text = "Hello world" , bg = "black"
  21.               , fg="white", font=("Arial",12))
  22. ispis.place(x =50, y=150)
  23. #4.
  24. ispis = Label(a, text = "Hello world" , bg = "black"
  25.               , fg="white", font=("Arial",12))
  26. ispis.place(x =50, y=200)
  27.  
  28. #entrys:
  29.  
  30. #1
  31. textbox = Entry(a,width=12)
  32. textbox.place(x =200, y=50)
  33.  
  34. #2
  35. textbox = Entry(a,width=12)
  36. textbox.place(x =200, y=100)
  37.  
  38. #3
  39. textbox = Entry(a,width=12)
  40. textbox.place(x =200, y=150)
  41.  
  42.  

Replies to Python Allba rss

Title Name Language When
Re: Python Roko text 1 Month ago.