Splitting, Concatenating, and Joining Strings in Python

Splitting, Concatenating, and Joining Strings in Python

University

6 Qs

quiz-placeholder

Similar activities

Intro to Python recap

Intro to Python recap

10th Grade - Professional Development

11 Qs

Python Basics: Dictionaries and Strings

Python Basics: Dictionaries and Strings

University - Professional Development

10 Qs

Python User Input Quiz

Python User Input Quiz

6th Grade - University

10 Qs

PRG1 - Day 4 starter

PRG1 - Day 4 starter

University

8 Qs

Python Data Types Quiz

Python Data Types Quiz

10th Grade - University

11 Qs

Automata - Understanding

Automata - Understanding

University

10 Qs

GRADE 10 ТЖБ

GRADE 10 ТЖБ

University

9 Qs

Syntax Testing

Syntax Testing

University

10 Qs

Splitting, Concatenating, and Joining Strings in Python

Splitting, Concatenating, and Joining Strings in Python

Assessment

Quiz

Computers

University

Hard

Created by

Sangameshwar Biradar

Used 20+ times

FREE Resource

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:

*

/

-

+