Python/예제
[파이썬 예제] 2위 n제곱 값 나열하기 - range
Fullyalive
2017. 8. 13. 21:33
for i in range(11):
print("2^%d = %d" % (i, 2 ** i))