#sample solution
def checkLen():
str = "Ninja Coder!"
flag = True
while flag:
count = 0
for char in str:# your code here
# your code here
count += 1
if len(str) == count:# your code here
# your code here
print "done"
flag = False
else:
# your code here
print "not yet done"
checkLen()
No comments:
Post a Comment