Struktura stanowa Python

age = 17
if age < 18:
  print('Vous êtes mineur')
else:
  print('Vous êtes majeur')
000Bo