Something's missing

Report a typo

Take a look at the template. The value of the string variable is read from the input. Complete the code and call the match() function in such a way that the template would match the following string:

NEVER gonna let you down!..

Don't print the result or change the template — you need to call the function only.

Write a program in Python 3
import re


string = input()
template = r'never gonna let you down...'
match = re.match(template, string)
___

Create a free account to access the full topic