mplement script to build and prepare packages for Python

This commit is contained in:
Maxim Lobanov
2020-04-29 10:57:27 +03:00
commit c641695f6a
37 changed files with 2558 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import sys
print(sys.version)
print(sys.prefix)
# Python program to find the factorial of a number
num = 65
factorial = 1
print("Find the factorial of ", num)
for i in range(1, num + 1):
factorial = factorial*i
print("The factorial of ", num, " is ", factorial)