Quiz Catalog

Catalog of quizzes

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

print(s.rpartition("Python"))
('Python3 is a lot better than ', 'Python', '2.')
  • string/operation/rpartition