Wanna know if the play ground code support tkinter | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Wanna know if the play ground code support tkinter

from tkinter import Label,Tk import time app = Tk() app.title("Horloge Digitale") app.geometry("350x200") app.resizable(0,0) #Conception de l'étiquette text_font = ("Boulder", 68, 'bold') backgroud = "#f2e750" foreground = "#363529" border_width = 25 label = Label(app, font = text_font, bg = backgroud, fg = foreground, bd = border_width) label.grid(row = 0, column = 1) #Fonction d'horloge numérique def digital(): time_live = time.strftime("%H:%M:%S") label.config(text = time_live) label.after(200, digital) digital() app.mainloop

9th Oct 2021, 2:58 AM
Mbengue Mbor
Mbengue Mbor - avatar
5 Answers
+ 3
The sololearn play ground, like most mobile compilers, do not support GUI
9th Oct 2021, 3:55 AM
Erlénio.RS
Erlénio.RS - avatar
+ 3
Erlénio.RS , It's GUI Not GIU 😂
11th Oct 2021, 10:26 AM
Sancho Godinho
Sancho Godinho - avatar
+ 3
There's No Way Tkinter Will Work In Sololearn... You Need To Use Pydroid Or Windows For Tkinter
11th Oct 2021, 10:27 AM
Sancho Godinho
Sancho Godinho - avatar
+ 3
Sancho Godinho 🤣🤣, I hadn't even noticed, Thanks for listening
11th Oct 2021, 10:29 AM
Erlénio.RS
Erlénio.RS - avatar
0
Ok
9th Oct 2021, 12:39 PM
Mbengue Mbor
Mbengue Mbor - avatar