Зміст курсу
Regex Wizards (Project)
Group function 1/2
The group()
function in the re
module in Python is used to extract a specific group from a match object returned by methods such as search()
or finditer()
. A group is created by enclosing a part of the regular expression in parentheses()
.
Завдання
- import
re
. - Define a text variable as
"The cat in the hat."
. - Search for the first vowel value in the string using the following grammar:
[aeiou]
. - Print the output using the
group()
function.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
The group()
function in the re
module in Python is used to extract a specific group from a match object returned by methods such as search()
or finditer()
. A group is created by enclosing a part of the regular expression in parentheses()
.
Завдання
- import
re
. - Define a text variable as
"The cat in the hat."
. - Search for the first vowel value in the string using the following grammar:
[aeiou]
. - Print the output using the
group()
function.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Секція 1. Розділ 5
AVAILABLE TO ULTIMATE ONLY