Learn practical skills, build real-world projects, and advance your career

Creating tuples

x = (3,) #tuple with 1 item
t = (1, 2, 3, 4)
nums = tuple(i for i in range(50) if i%2 == 0)
print(nums)
(0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48)

Tuples Properties