+ 1
how do I create arithmetic progression using the range function
dont know
3 odpowiedzi
+ 3
AP = a + (n - 1) d ----------> Formula
a --> First Term n --> Number Of term
d --> Common Difference
Turn this into simple function
https://code.sololearn.com/cgI5JX1xK3cD/?ref=app
+ 1
https://code.sololearn.com/cEKcURvyz2mA/?ref=app
+ 1
print(list(range(1,100,2)))