Splitting, Concatenating, and Joining Strings in Python

Splitting, Concatenating, and Joining Strings in Python

University

6 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

6th Grade - University

10 Qs

Introduction to Python Quiz

Introduction to Python Quiz

8th Grade - University

10 Qs

Python Basics: Dictionaries and Strings

Python Basics: Dictionaries and Strings

University - Professional Development

10 Qs

Session 2 Quiz

Session 2 Quiz

University

10 Qs

PRG1 - Day 4 starter

PRG1 - Day 4 starter

University

8 Qs

Workshop 2 Review

Workshop 2 Review

University

10 Qs

Q8 - FundComp - Python Básico (En)

Q8 - FundComp - Python Básico (En)

University

10 Qs

Coding Basics

Coding Basics

5th Grade - 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:

*

/

-

+