live3.py (125B)
1 x = int(input("Input something: ")) 2 3 A = [1,2,3] 4 5 for i in range(2,9): 6 z = 10**i 7 print("A power of 10:", z) 8 9 print("Bye")
mathsoftwareA course about LaTeX and SageMath | |
git clone https://git.tronto.net/mathsoftware | |
Download | Log | Files | Refs | README | LICENSE |
live3.py (125B)
1 x = int(input("Input something: ")) 2 3 A = [1,2,3] 4 5 for i in range(2,9): 6 z = 10**i 7 print("A power of 10:", z) 8 9 print("Bye")