id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

konstans@stuy.edu all > removeFromString
prev  |  next  |  chance

Write a function that accepts a string s, and a string to be removed from s called part. Return a string with all instances of that part removed. (Hint: do not call removeCharFromString() )


removeFromString('aababa', 'aba') → 'aba'
removeFromString('Bloop pow woot', 'oo') → 'Blp pow wt'
removeFromString('Bloop woot pow woot', ' woot') → 'Bloop pow'

...Save, Compile, Run (ctrl-enter)

def removeFromString(s,part):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Copyright Nick Parlante 2017 - privacy