Struktur Proyek Python

#first things you need to import
import...

#create variables for your program
a = "hi"
b= "python"
c = "program"
d= 2
#Use variables
print(a + b + c + d)
screen = Tk()
screen.title(b)
screen.mainloop()
VScoder