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.

8 rivejä
289 B

5 vuotta sitten
  1. w1 = "Supercalifragilisticexpialidocious"
  2. w2 = "Antidisestablishmentarianism"
  3. w3 = "Honorificabilitudinitatibus"
  4. composers = ['Berlioz', 'Borodin', 'Brian', 'Bartok', 'Bellini', 'Buxtehude', 'Bernstein']
  5. composers.sort()
  6. print(len(w1))
  7. print("ice" in w1)
  8. print(w2 > w3)
  9. print(composers[0])