def rangefunction(startvalue, endvalue, stepvalue):
# Write your code here
for i in range (startvalue,endvalue,stepvalue):# range(start,stop,step)
print(i*i,end=" ")# end =" " is to give space
if __name__ == '__main__':
This blog has content related to python programing language and Automation with python and hacker rank solutions , leet code solution
def rangefunction(startvalue, endvalue, stepvalue):
Comments
Post a Comment