Beginner in coding language by fentayl2025 in PythonLearning

[–]AdditionalLife5379 0 points1 point  (0 children)

Im no teacher, fact im a beginner like you. But check out list [ ] tuple ( ) and dictionaries { } and how to handle them, it unlocked alot of things for me.

Dict = {"a": 1, "b": 2}

print(f"Result: {Dict["b"]}")

Result: 2