С
Size: a a a
R3
R3
VA
R3
T
R3
AD
R3
AD
R3
B
python
e = [10, 20, 30, 40, 50]
x = [1, 2, 3, 4, 5]
i = 0
while True:
i = i + 1
y = e[i] ** (x[i] ** 2) / 2
print(y)
Traceback (most recent call last):
File "source_file.py", line 7, in <module>
y = e[i] ** (x[i] ** 2) / 2
IndexError: list index out of range
80000.0
9841500000000.0
2.147483648e+25
1.4901161193847657e+42
python3 assumed, other valid option is python2, you can be more specific next time.
С
С
R3
AD
B
B
С