Regular Expressions (Python)

Regular Expressions (Python)

KG - University

7 Qs

quiz-placeholder

Similar activities

Linear Search

Linear Search

12th Grade

10 Qs

ITF - Quiz 4.7 - Using a Search Engine

ITF - Quiz 4.7 - Using a Search Engine

Professional Development

8 Qs

Internet Search - BrainPOP

Internet Search - BrainPOP

4th - 8th Grade

10 Qs

Using Google Sides

Using Google Sides

9th - 12th Grade

10 Qs

CatalogONE Workshop - Day 1 Morning

CatalogONE Workshop - Day 1 Morning

Professional Development

10 Qs

Quiz 14 - Swing Components

Quiz 14 - Swing Components

11th Grade

10 Qs

8-րդ դաս․ Ինֆորմացիայի որոնումը և փոխարինումը։Ինֆորմատիկա

8-րդ դաս․ Ինֆորմացիայի որոնումը և փոխարինումը։Ինֆորմատիկա

8th Grade

10 Qs

Linear Binary Search

Linear Binary Search

10th - 12th Grade

9 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