Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Codio Challenge Find and print the number of non-alphanumeric characters. Find and print the number of non-alphanumeric characters. Hint: use the len function. Output 144

Codio Challenge

Find and print the number of non-alphanumeric characters.

Find and print the number of non-alphanumeric characters.

Hint: use the len function.

Output

144

Number of non-alphanumeric characters.

Check It!

The first thing to do when doing a pattern search is to import the module re which provides full support for regular expressions in Python. This has already been provided in the code to the left.

Also provided for you on the left is the original string,original_text and the string,lorem_ipsum. lorem_ipsum is the string you will be using to change as you go through the programming activities in this course unit.

Find all of the instances of non alphanumeric characters in the string assigned to lorem_ipsum.

Use the ^ and [] regular expression operator along with the findall() regular expression function.

Assign the outcome to a variable named results.

Output to the console, the number of non-alphanumeric characters. Hint: use the len function.

Find and print the number of 'sit' and 'amet' separated with punctuation marks

Hint: use the len function.

Output

3

Number of words with punctuation marks.

Check It!

Using the re.findall() function, get all of the instances of 'sit-amet' or 'sit:amet' characters in the string assigned to lorem_ipsum.

Assign the outcome to a variable named occurrences_sit_amet

Output to the console, the number of sit-amet or sit:amet occurrences.

Replace 'sit' and 'amet' words separated with punctuation marks with 'sit amet'

Replace sit:amet and sit-amet with sit amet using the re.sub() function.

Assign the outcome to a variable named replace_results

Find and print all the instances of 'sit amet'

Using the re.findall() function, get all of the instances of 'sit amet'in the string assigned to replace_results.

Assign the outcome to a variable named occurrence_sit_amet.

Output to the console, the number of sit amet occurrences.

Hint: use the len function.

Output

3

Number of replaced words.

Check It!

import re

#Paragraph provided for search and replace

original_text='''Lorem ipsum dolor sit-amet, consectetur adipiscing elit. Phasellus iaculis velit ac nunc interdum tempor. Ut volutpat elit metus, vel auctor enim commodo at. Nunc quis quam non ligula ultricies luctus porta id justo. Quisque dapibus est ut sagittis bibendum. Mauris ullamcorper pellentesque porttitor. Ut sit:amet ex nec dolor gravida porttitor. Proin at justo finibus justo vestibulum congue. Suspendisse et ipsum et ipsum eleifend dapibus a fermentum lacus. Vivamus porta nunc eu nisl sagittis, quis vulputate metus dignissim. Integer non fermentum nisl, id vestibulum elit. Sed euismod vestibulum purus ut porttitor. Integer sit-amet mollis neque. Donec sed lacinia diam, ac finibus lectus. Mauris tempor ipsum nisl, vitae posuere est lacinia nec. Nam eget euismod odio.'''

lorem_ipsum = '''Lorem ipsum dolor sit-amet, consectetur adipiscing elit. Phasellus iaculis velit ac nunc interdum tempor. Ut volutpat elit metus, vel auctor enim commodo at. Nunc quis quam non ligula ultricies luctus porta id justo. Quisque dapibus est ut sagittis bibendum. Mauris ullamcorper pellentesque porttitor. Ut sit:amet ex nec dolor gravida porttitor. Proin at justo finibus justo vestibulum congue. Suspendisse et ipsum et ipsum eleifend dapibus a fermentum lacus. Vivamus porta nunc eu nisl sagittis, quis vulputate metus dignissim. Integer non fermentum nisl, id vestibulum elit. Sed euismod vestibulum purus ut porttitor. Integer sit-amet mollis neque. Donec sed lacinia diam, ac finibus lectus. Mauris tempor ipsum nisl, vitae posuere est lacinia nec. Nam eget euismod odio.'''

#Using the findall function, get all of the instances of non alphanumeric characters in the string assigned to 'lorem_ipsum' #Output to the console, the number of non-alphanumeric characters. Hint: use the len function

#Using the findall function, get all of the instances of 'sit-amet' or 'sit:amet' characters in the string assigned to 'lorem_ipsum' #Assign the outcome to a variable named 'occurrance_sit_amet'

#Output to the console, the number of sit-amet or sit:amet occurrances. Hint: use the len function

#Replace sit:amet and sit-amet with sit amet using the sub funciton #Assign the outcome to a variable named 'replace_results'

#Using the findall function, get all of the instances of 'sit amet' in the string assigned to 'replace_results' #Assign the outcome to a variable named 'occurrance_sit_amet'

#Output to the console, the number of sit amet occurrances. Hint: use the len function

Answer with comments

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications Dexa 2022 Workshops 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 In Computer And Information Science 33

Authors: Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil ,Bernhard Moser ,Alfred Taudes ,Atif Mashkoor ,Johannes Sametinger ,Jorge Martinez-Gil ,Florian Sobieczky ,Lukas Fischer ,Rudolf Ramler ,Maqbool Khan ,Gerald Czech

1st Edition

3031143426, 978-3031143427

More Books

Students also viewed these Databases questions