почему подсвечивает вызов функции start c ошибкой unexpected indent?
def start():print('введите код') start() code=input () if code=='xxx':print('1') else:print("0") [b]start()[/b] print ('вход выполнен')
def start():print('введите код') start() code=input () if code=='xxx':print('1') else:print("0") [b]start()[/b] print ('вход выполнен')
if условие: выражение
https://pythonru.com/osnovy/if-else
if condition: # блок if statement 1 statement 2 and so on else: # блок else statement 3 statement 4 and so on: