N的多次方

i=0
N=eval(input())
while i<6:
     temp=pow(N,i)
     print(temp)
     i=i+1

原文地址:https://www.cnblogs.com/study007/p/12497816.html