Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
A much more performant code for long strings would be:s = s.strip();print(len(s[s.rfind(' ')+1:]));
I can see how that would be the case. Thank you!
A much more performant code for long strings would be:
s = s.strip();
print(len(s[s.rfind(' ')+1:]));
I can see how that would be the case. Thank you!