Your code will break. This is normal. Here is how to fix it without crying.

age = int(input("Enter age: ")) if age >= 18: print("Adult") else: print("Minor") Use code with caution. Copied to clipboard 🔁 Chapter 4: Loops (Iteration) Repeat tasks efficiently without rewriting code.

if ålder < 13: print("Barn") elif ålder < 20: print("Tonåring") else: print("Vuxen")