MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following lines of code will not show a match? |
| A. | >>> re.match(‘ab*’, ‘a’) |
| B. | >>> re.match(‘ab*’, ‘ab’) |
| C. | >>> re.match(‘ab*’, ‘abb’) |
| D. | >>> re.match(‘ab*’, ‘ba’) |
| Answer» E. | |