mathsoftware

A course about LaTeX and SageMath
git clone https://git.tronto.net/mathsoftware
Download | Log | Files | Refs | README | LICENSE

live2.py (104B)


      1 x = int(input("Input something: "))
      2 
      3 while x > 10:
      4 	print("Large number!", x)
      5 	x = x - 1
      6 	
      7 print("Bye")