Quick actions

cmd+k|ctrl+k

Navigation

Languages

tuple01

Snippet info

Language

Python

Visibility

public

Author

kwahmail

Created

2025-09-03T12:54:27.767398Z

Updated

2025-09-03T12:54:27.767398Z

a=1,2,3,4
b=list(a)
b[0]=10
a=tuple(b)
print(a,type(a))
INFO