Define a function make_tag(name, count) with a docstring 'Return a label like 3x Widget.' that retur
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Define a function make_tag(name, count) with a docstring 'Return a label like 3x Widget.' that returns a string made of count, 'x ', and name. Store the result of make_tag('Bolt', 12) in a variable called label and print 'Label: ' followed by label.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.