You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

9 lines
289 B

w1 = "Supercalifragilisticexpialidocious"
w2 = "Antidisestablishmentarianism"
w3 = "Honorificabilitudinitatibus"
composers = ['Berlioz', 'Borodin', 'Brian', 'Bartok', 'Bellini', 'Buxtehude', 'Bernstein']
composers.sort()
print(len(w1))
print("ice" in w1)
print(w2 > w3)
print(composers[0])