We will NOT be going to Duke Centennial Hall on Tuesdays and Thursdays. It was determined to be too far of a walk. So we'll stay in Belk on those days.
Tomorrow (Thursday) we'll meet outside Cone in the courtyard to walk to class (in Smith Hall) together
in
point = (3, 4) print(point[0]) # 3 print(point[1]) # 4
nums = (1, 2, 3) # nums[0] = 5 Error! Cannot change a tuple
coords = (10, 20)
x, y = coords print(x) # 10 print(y) # 20
def min_and_max(nums): return (min(nums), max(nums)) low, high = min_and_max([4, 7, 1, 9]) print(low, high) # 1 9
(5, 10, 15)
a, b, c
a + c