🐍 Python Code
# EXAMPLE 31
# Create and Display Lists
n = [2, 4, 6, 8, 10]
s = ["Gech", "Abebe", "Saba"]
print("Number List =", n)
print("Student List =", s)
🤖 Python Output
Number List = [2, 4, 6, 8, 10]
Student List = ['Gech', 'Abebe', 'Saba']