I write python code in atom editor and make program arithmetic sequence in function
this is the code:
def arithmetic(n):
flag = n
for flag in range(10):
number = []
result = number.append(flag**2)
return result
the result when print(arithmetic(5)):
None