Skip to content

Commit

Permalink
Create ola.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arielroque authored and wmartins committed Oct 31, 2018
1 parent c069bff commit acec824
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ola.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from tkinter import*

gui = Tk()

gui.geometry("320x420")

texto = Label(gui,text="Olá meu nome é Ariel!")

texto.place(x=90,y=100)

texto1 = Label(gui,text="I love Python!")

texto1.place(x=120,y=120)

gui.mainloop()

0 comments on commit acec824

Please sign in to comment.