Created
October 28, 2020 15:19
-
-
Save vsecoder-old-account/d24ec591e231f8581033ee52125b7b44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, time | |
from tkinter import * | |
window = Tk() | |
window.title('Chat') | |
messages = Text(window) | |
messages.pack() | |
input_user = StringVar() | |
input_field = Entry(window, text=input_user) | |
input_field.pack(side='bottom', fill='x', expand='true') | |
input_msg = StringVar() | |
input_field1 = Entry(window, text=input_msg) | |
input_field1.pack(side='bottom', fill='x', expand='true') | |
window.mainloop() | |
print('Выполнено') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment