Horje
geometric progression in python Code Example
geometric progression in python
def geometric_progression(a1, n, q):
    print(a1)
    for i in range(1, n + 1):
        power = i - 1
        t = a1 * q ** power
        print(t)




Python

Related
how to check if python has been added to path Code Example how to check if python has been added to path Code Example
python random from normal distribution Code Example python random from normal distribution Code Example
pandas profiling Code Example pandas profiling Code Example
how to read excel file in jupyter notebook Code Example how to read excel file in jupyter notebook Code Example
read json file python utf8 Code Example read json file python utf8 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9