Write a python script to print first 10 multiples of 5

 #. Write a python script to print first 10 multiples of 5

a=int(input("Enter the number"))
i=1
while i<=10:
    print(a*i)
    i+=1
   

Comments

Popular posts from this blog

Write a python script to display the current date and time. First create variables to store date and time, then display date and time in proper format (like: 13-8-2022 and 9:00 PM """