25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
289 B

  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])