# basic multiplicationprint((0,)*5)# check negative, 0, positive; lhs and rhs multiplicationforiin(-4,-2,0,2,4):print(i*(1,2))print((1,2)*i)# check that we don't modify existing tuplea=(1,2,3)c=a*3print(a,c)# unsupported type on RHStry:()*NoneexceptTypeError:print('TypeError')