Write a Python program to access and print a specific inner value from a nested dictionary structure.
Outer key and inner key separated by a space (e.g., `student1 marks`).
Print the value.
Valid keys in nested structure `{'student1': {'name': 'Alice', 'marks': 85}, 'student2': {'name': 'Bob', 'marks': 90}}`student1 marks
85
Access nested dictionaries using chained bracket keys like `nested[outer][inner]`.
def get_nested(outer, inner):
data = {'student1': {'name': 'Alice', 'marks': 85}, 'student2': {'name': 'Bob', 'marks': 90}}
# Write your code here
pass
outer, inner = input().split()
print(get_nested(outer, inner))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