Quiz Catalog

Catalog of quizzes

s = "Python3 is a lot better than Python2."

print(s.partition("Python"))
('', 'Python', '3 is a lot better than Python2.')
  • string/operation/partition