hi so for my project we were asked to ask the user to input a width and height for the dimensions of turtle screen.
i asked for a user input then split it, and put in into a list then converted the two separate numbers into integers.
so for example the user input 600 500 i split it to
w = 600
h = 500
when i set the dimensions in the code though, and use the variables like this:
turtle._root.geometry('w x h'),
it gives me an error.
any help on how to do this properly so it would not give me an error??