string = 'qwe rty uio pas' print(' '.join(string.split()[2:]))
'one two any other word you need'.split(maxsplit=2) Out[43]: ['one', 'two', 'any other word you need']
Спасибо это работает отлично
да не за что
string[7:] подойдет?
так он все что после второго слова хочет вывести, не?
Обсуждают сегодня