s = 'a b c’ print(s.split()), a b c, ['a', '', '', '', '', 'b', 'c'], ['a', 'b', 'c'], s = 'a b c’ print(s.split(' ')), ['a', '', '', '', '', 'b', 'c'], a b c, ['a', 'b', 'c'], print('-'.join(['pen', 'pineapple', 'apple', 'pen'])), -penpineappleapplepen, pen-pineapple-apple-pen, pen-pineapple-apple-pen-, letters = ['B', ' ', 'T', ' ', 'S’] print(letters.split()), BTS, ['B', 'T', 'S'], ошибка, print('-'.join('DNA')), D-N-A, ['D', '-', 'N', '-', 'A'], -D-N-A-, numbers = [24, 60, 1] print(''.join(numbers)), [24, 60, 1], ошибка, ['24', '60', '1']

von

Bestenliste

Visueller Stil

Einstellungen

Vorlage ändern

Soll die automatisch gespeicherte Aktivität wiederhergestellt werden?