Advertisement
Guest User

newfile.py

a guest
Mar 9th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. from tkinter import Tk, Label
  2. root= Tk ()
  3. Label(root, text='').grid(row=0, column=0)
  4. Label(root, text='').grid(row=0, column=0)
  5. Label(root, text='Username:').grid(row=1, column=1)
  6. Label(root, text='Password:').grid(row=2, column=1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement