Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is my code: How to remove the space below without modifying the strings from the print function? def get_part(text, index): return (text.replace( ,).strip().split('|')[index:index+1]) print(get_part('

This is my code:

image text in transcribed

How to remove the space below without modifying the strings from the print function?

image text in transcribed

def get_part(text, index): return (text.replace(" ","").strip().split('|')[index:index+1]) print(get_part(' John Doe | Male | ,0)) print(get_part('John Doe | Male | X,2)) print(get_part('Dog|Cat',, 0) ) [JohnDoe][X][Dog]

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

More Books

Students also viewed these Databases questions