tuple push

Solutions on MaxInterview for tuple push by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "tuple push"
Sebastian
06 Jul 2018
1a = ('Product', '500.00', '1200.00')
2a = list(a)
3a.insert(3, 'foobar')
4a = tuple(a)
5print a
6
7>> ('Product', '500.00', '1200.00', 'foobar')