Write a Python program that packs multiple values into a single tuple variable and prints it.
Space-separated values.
Print the packed tuple.
Valid inputs
John 25 Engineer
('John', '25', 'Engineer')
Assigning multiple comma-separated values without parentheses packs them into a tuple automatically.
def pack_values(v1, v2, v3):
# Write your code here
pass
v1, v2, v3 = input().split()
print(pack_values(v1, v2, v3))Embedded systems rely on efficient low-level programming to interact directly with hardware. In this course, you will learn how to write practical Embedded C programs used in real microcontroller-based systems. Rather than focusing only on theory, this course follows a practice-driven approach. Each lesson includes hands-on coding exercises that simulate real firmware development tasks used