Obviously I am new to programming and Python so I am trying to learn. Here is my question below I am trying to answer:
“We will pass in 2 values, X and Y. You should calculate X^y and output the final result” what you see below is what I was provided. I believe I am to use a nested loop to calculate it.
import sys
X = int(sys.argv[1])
Y = int(sys.argv[2])