Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are working with a dataset on customer orders. This dataset includes a field that contains information on both city and state. You would like

image text in transcribed
You are working with a dataset on customer orders. This dataset includes a field that contains information on both city and state. You would like to separate this field into two fields, a city field and a state field. In the current field, city and state are separated by either a comma, or a period. Complete the function parse_city_state to split city and state into two strings and return only the state. def parse_city_state(text) : pattern = #enter the regex pattern here result = re. (pattern, text) #enter the re method here if len(result) != 2: return " HNMT in M O m Q return #return. the correct capturing group print (parse_city_state ("Hamilton, MN" ) ) # should return MN Run print (parse_city_state ( "Albuquerque, New Mexico") ) # should return New Mexico print (parse_city_state ("Portland. Oregon") ) # should return Oregon Reset

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

Mobile Communications

Authors: Jochen Schiller

2nd edition

978-0321123817, 321123816, 978-8131724262

More Books

Students also viewed these Programming questions