Given user = None and default_name = 'guest', use the or operator to assign name = user or default_n
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Given user = None and default_name = 'guest', use the or operator to assign name = user or default_name. Print name. Then given a = 0 and b = 'fallback', use or to compute and print (a or b).
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.