wordwithoutstrip = ''
i = 0
while (i < len(string)):
if (i < len(strip)):
wordwithoutstrip = wordwithoutstrip + string[i]
i = i+1
return wordwithoutstrip
def setup():
string = 'thailand '
strip = ' '
print("world is", my_strip(string, strip))
assert my_strip(string, strip) == 'thailand'
setup()
ไม่มีความคิดเห็น:
แสดงความคิดเห็น