How many times will the following code print “Welcome to Python”?c June 7, 2022 by admin ✪ Choose the correct option.How many times will the following code print “Welcome to Python”?count = 0while count < 10: print(“Welcome to Python”) count += 1A. 8B. 9C. 10D. 11 Submit Answer