7
5
27
4K
4
Download Image
@CodingComputing In Python the comma without any operator or function separating it, is interpreted as a tuple creation, so 1,2 + 3,4 is interpreted as 1,2+3,4 which results in (1,5,4)
@CodingComputing C (1, 5, 4)/ Python interprets x as a tuple with 3 elements so it will print 1, 1 + 3 =4 and 5
@CodingComputing C. x is a tuple consisting of 3 elements, 1, 2+3 and 4. Rest is easy to figure out.