3 characters, out of which the last character is an exclamation mark. r" </head>quot; | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

3 characters, out of which the last character is an exclamation mark. r"
quot;

3 characters, out of which the last character is an exclamation mark. r"

quot;

25th Apr 2020, 1:41 PM
Ms. M. Gayathri Lakshmi
Ms. M. Gayathri Lakshmi - avatar
1 Answer
0
import re regx = re.compile("^.{3}!
quot;) # this will match four char string were last char is an exclamation mark (if I correctly guess your expect ^^) """ Anyway, 'r' as string prefix doesn't stand for 'regular expressio ' but for 'raw string' (ie: string wich avoid doesn't use char escaping). Confusion is due to raw strings are often used for regular expression source string as improving readability when too much char should be escaped... but that's not always needed ;) https://www.journaldev.com/23598/JUMP_LINK__&&__python__&&__JUMP_LINK-raw-string https://stackoverflow.com/a/30164723 """
25th Apr 2020, 5:24 PM
visph
visph - avatar