Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте How to Append New Element? | Introduction to Python 1/2
Introduction to Python for Data Analysis

bookHow to Append New Element?

Let's move to methods that we can apply to our list. The first one is append(), which adds the item to the end of the list. Look at the example:

123
word = ['c', 'a', 't'] word.append('s') print(word)
copy

Everything is easy! It is your turn to practice.

If you want to dive deeper into data types, you can take a Python Data Types course.

question-icon

Drag the items of code below to make the output look like this 'My favorite holiday is Christmas'. To do it, just append the 'Christmas' string.

holiday = ['My favorite holiday is']

Натисніть або перетягніть елементи та заповніть пропуски

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 13

Запитати АІ

expand

Запитати АІ

ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

Awesome!

Completion rate improved to 2.08

bookHow to Append New Element?

Свайпніть щоб показати меню

Let's move to methods that we can apply to our list. The first one is append(), which adds the item to the end of the list. Look at the example:

123
word = ['c', 'a', 't'] word.append('s') print(word)
copy

Everything is easy! It is your turn to practice.

If you want to dive deeper into data types, you can take a Python Data Types course.

question-icon

Drag the items of code below to make the output look like this 'My favorite holiday is Christmas'. To do it, just append the 'Christmas' string.

holiday = ['My favorite holiday is']

Натисніть або перетягніть елементи та заповніть пропуски

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 13
some-alt