FollowShareCan not insert item in tupleCreated 4 years ago 26 Views 2 CommentsPython @SonaliDabhade@SonaliDabhadeProfile is locked. Loginz= ('bike', 'car', 30, 40, 50) y = list(z) y[1]="oranges" x = tuple(y) print(x) getting error: TypeError: 'tuple' object is not callable
z= ('bike', 'car', 30, 40, 50) y = list(z) y[1]="oranges" x = tuple(y) print(x) getting error: TypeError: 'tuple' object is not callable