0
Hi, Sorry. I don't understand the question.
The provided code stores the value 7 in a variable, and outputs it. Change the code to output the value of the variable raised to the power of 3
3 odpowiedzi
+ 5
x = 7
print(x**3)
?
Can you elaborate on the part of the question that you did not understand?
0
x=7
x**3 = x*x*x = 7*7*7 = 343
0
Probably the sentences. Let me do some revision.