Search Header Logo

Splitting, Concatenating, and Joining Strings in Python

Authored by Sangameshwar Biradar

Computers

University

Used 20+ times

Splitting, Concatenating, and Joining Strings in Python
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

6 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

In Python, strings are…

char arrays

changeable

immutable

str objects

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The minsplit parameter to split() specifies the minimum number of splits to make to the input string.

False

True

3.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which of the following would separate a string input_string on the first 2 occurences of the letter “e”?

'e'.split(input_string, maxsplit=2)

input_string.split('e', 2)

input_string.split('e', maxsplit=2)

'e'.split(input_string, 2)

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Python strings have a property called “immutability.” What does this mean?

Strings can’t be divided by numbers

You can update a string in Python with concatenation

Strings in Python can be represented as arrays of char S

Strings in Python can’t be changed

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

If you want to transform a list of strings input_list into a single string with a comma between each item, which of the following would you give as the input to join()?

string

' , '

str

input_list

6.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which of the following mathematical operators can be used to concatenate strings:

*

/

-

+

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?