Regular Expressions (Python)

Regular Expressions (Python)

KG - University

7 Qs

quiz-placeholder

Similar activities

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Online Databases vs. Search Engines

Online Databases vs. Search Engines

6th - 10th Grade

10 Qs

Introduction to Python Turtle

Introduction to Python Turtle

7th - 8th Grade

10 Qs

RegEx in Python

RegEx in Python

University

10 Qs

MLStudio MSA

MLStudio MSA

University

6 Qs

SLR 9 - Advanced Programming Techniques - Part Two

SLR 9 - Advanced Programming Techniques - Part Two

10th Grade

10 Qs

Google Search

Google Search

5th - 6th Grade

10 Qs

Python - Functions

Python - Functions

University

10 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