🎯 What you'll learn: The full power of print() — its sep, end, and formatting parameters. How input() works and why its result is always a string. How to cast user input to numbers, collect multiple inputs in one line, validate input, and build complete interactive console programs.
1-B 2-A 3-B 4-B | 5 str 6 int 7 = name = input('Name? ') 8 = age = int(input()) 9 = print(f'Score: {score}') | 10 = input() is a str; you cannot add str and int without converting