Syntax error with unknown cause that appeared in already working code
from tkinter import * import pygame window = Tk() window.geometry(“600×600”) # size of window window.title(“BAJDJ”) window.config(bg=”red”) label = Label(window, text=”Crab”) label.pack() window.mainloop() this code runs normally on debug mode but when run regularly comes back with a syntax error, if I run it in the default python ide the first line highlights in red and […]
Syntax error with unkwon cause that appared in already working code
from tkinter import * import pygame window = Tk() window.geometry(“600×600”) # size of window window.title(“BAJDJ”) window.config(bg=”red”) label = Label(window, text=”Crab”) label.pack() window.mainloop() this code runs normally on debug mode but when run regularly comes back with a syntax error, if I run it in the default python ide the first line highlights in red and […]