jakeSanT319 jakeSanT319 07-02-2024 Computers and Technology contestada convert the following while loop to for loop a=3 while a<100: if a%2==0: print(a 2,end=",") else: print(a*2,sep="$") a=a 3