Appearance
name = "hello" age = 25 score = 99.5 is_student = True
if age >= 18: print("成年") else: print("未成年")
for i in range(5): print(i)