Hi Is there any possibility to update tuples dynamically(in a :for loop" say)
Else is there possiblity to dynamically create a new tuple?
Thank you in advance

You can sort-of dynamically create tuples, for example:

name = "Jim"
last_name = "Beam"

mytuple = (name, last_name)

However, you'd not be able to dynamically change the size of a tuple. That sort of thing's hard-coded.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.