Aug-19-2020, 08:11 AM
I finally manage to install the visual code IDE and when I give it a simple code :
When I start to debug the program it falls into an infinite loop.
What peculiarity is that?
P.S.
I noticed that in the "warning" refers to the python 385 version, while I`m running the 374 one.
import tkinter as tk import time tk = tk.Tk() self.geometry("350x500") self.resizable(height = False, width = False) self.title('Calculator') class Sscalc(): file = ("Main.png") image = file time = 5 def frm(): Frame(self,image,time) def lbl(): Label(self,image,time) self.after(5000) self.destroy if __name__ == "__main__": self.mainloopit gives me this "warning": 'The terminal process failed to launch: Path to shell executable "C:\Python 385\Scripts\__pycache__" is not a file of a symlink.'
When I start to debug the program it falls into an infinite loop.
What peculiarity is that?

P.S.
I noticed that in the "warning" refers to the python 385 version, while I`m running the 374 one.