5.7Whichofthefollowingloopsprints"WelcometoPython"10times?A:forcountinrange(1,10):print("WelcometoPython")B:forcountinrange(0,10):print("WelcometoPython")C:forcountinrange(1,11):print("WelcometoPython")D:forcountinrange(1,12):print("WelcometoPython")