Regular Expressions (Python)

Regular Expressions (Python)

KG - University

7 Qs

quiz-placeholder

Similar activities

Web Browser Vocabulary Test

Web Browser Vocabulary Test

1st - 5th Grade

11 Qs

Python - Functions

Python - Functions

University

10 Qs

Empowerment Technologies Quiz 3

Empowerment Technologies Quiz 3

11th Grade

10 Qs

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Data Cleaning

Data Cleaning

11th Grade

12 Qs

Best searching

Best searching

University

12 Qs

ICT G4 T2  Lesson 4: How to search online

ICT G4 T2 Lesson 4: How to search online

4th Grade

10 Qs

Розроблення програм виконання арифметичних обчислень

Розроблення програм виконання арифметичних обчислень

KG

12 Qs

Regular Expressions (Python)

Regular Expressions (Python)

Assessment

Quiz

Computers

KG - University

Medium

Used 141+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is line of Python code imports the re module?
Import re
import RE
import re
Import RE

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which flag will make your search case-insensitive?
re.I
re.c-i
re.CI
re.C-I

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

_______ is used to search through a string starting at its beginning. It returns None if no match is found.
re.match()
re.Search()
re.Method()
re.search()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which flag will search over multiple lines?
re.ml
re.M
re.m
re.ML

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

_______ searches the entire string, not just starting at the beginning. It returns None if no match is found.
re.match()
re.Search()
re.Method()
re.search()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
Will this code match the regular expression?
Yes
No

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
Will this code match the regular expression?
Yes
No