Найти - Пользователи
Полная версия: отступы
Начало » Python для новичков » отступы
1
ivank
не пойму ошибки:
>>> 
>>> lines = 876
>>> if lines < 1000:
print('small')
elif lines < 10000:

SyntaxError: invalid syntax (<pyshell#11>, line 3)
>>>
pasaranax
elif сдвинь левее, на уровень if
py.user.next
не, там print не сдвинут
>>> if 1 > 2:
... print 'a'
... elif 1 < 3:
... print 'b'
...
b
>>>
hsbc
lines = 876
if lines < 1000:
print('small')
elif lines < 10000:
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB