Python Aus Liste Tuple Machen

'''Liste in Tuple konvertieren'''
list = [2,11,41,76]
list
[2, 11, 41, 76]
t = tuple(list)
t
(2, 11, 41, 76)
Data Ant