Post

@PythonPr is this an operation in a list or tuple?
English

@PythonPr Answer: 20
t[1] is 10 (indexing starts at 0).
10 * 2 = 20.
For beginners: first element is t[0], not t[1]. Off-by-one is the most common beginner mistake.
English
Post

