Wrong answer given in python quiz number 3 Loop

@shivrajrtandale98
wrong answer given in python quiz number 3 Loop
Question number 10.

print(“ab,cd,ef,cd,gh,cd”.split(“,”))
[‘ab’, ‘cd’, ‘ef’, ‘cd’, ‘gh’, ‘cd’]

this above code is correct

but

[“ab”,“cd”,“ef”,“ef”,“cd”,“gh.cd”]

this code is given as correct…and actual option should be “none of there”

1 Like