Kay Ashaolu - Instructor
Aishwarya Sriram - TA
Fact:
All digital data is made up of zeros and ones.
[A, B, C, D]
where index 0 = A, index 1 = B, etc.person = {
"name": "Alice",
"age": 29,
"height": "5ft 6in"
}
print(person["name"]) # Output: Alice
def add(x, y):
result = x + y # Perform addition
return result
# Using the function
sum_value = add(3, 4)
print(sum_value) # Output: 7