Splitting, Concatenating, and Joining Strings in Python

Splitting, Concatenating, and Joining Strings in Python

University

6 Qs

quiz-placeholder

Similar activities

Python Test1 (If Statement)

Python Test1 (If Statement)

University

10 Qs

Conditionals

Conditionals

University

11 Qs

Session 2

Session 2

University

10 Qs

Programming basic

Programming basic

University

10 Qs

Python

Python

8th Grade - Professional Development

10 Qs

MS Core Java Quiz-1 2023

MS Core Java Quiz-1 2023

University

10 Qs

ISAC Quiz Day 1 (Coding Vocabulary)

ISAC Quiz Day 1 (Coding Vocabulary)

12th Grade - Professional Development

10 Qs

แบบทดสอบก่อน-หลังเรียนวิชาการเขียนโปรแกรมคอมพิวเตอร์ขั้นสูง

แบบทดสอบก่อน-หลังเรียนวิชาการเขียนโปรแกรมคอมพิวเตอร์ขั้นสูง

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:

*

/

-

+