IDLE config is set as
indentation width - 4 spaces
key set - IDLE classic windows
at startup - Open shell window
paragraph reformat width (in characters) - 70
I open up python IDLE and I am in the shell window. I click file > new file. I am now in the text editor. I write a line of code. It doesnt matter what the syntax is. When i push the "enter" button on my keyboard. Instead of dropping down to the next line and being in the proper spot. The little thing that blinks to show you where your at on the page is near the middle of the page...
number = float(input('what is your number? ')
name = input('what is your name? ')
name = input('what is your name?')
this is where it indents to
it doesnt matter the syntax
number = int(input('what is your number?')
if number > 5
print (""" I am only using the enter key to
go to the next line""")
else:
print('this is what it does')
even if double spaced, should it not look like this?
number = int(input('what is your number?')
if number < 5555
print (' helloe')
else:
print('..............')