Loops: Powers of Ten

Assignment:
Write a program, powers_of_ten_YI.py that prints the powers of ten using the “for” loop.

>>> 
What is the exponent for the powers of ten? 20
1.0
10.0
100.0
1000.0
10000.0
100000.0
1000000.0
10000000.0
100000000.0
1000000000.0
10000000000.0
100000000000.0
1000000000000.0
10000000000000.0
100000000000000.0
1000000000000000.0
1e+16
1e+17
1e+18
1e+19
>>>