mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
7 lines
120 B
Python
7 lines
120 B
Python
assert pow(3,2) == 9
|
|
assert pow(5,3, 100) == 25
|
|
|
|
#causes overflow
|
|
# assert pow(41, 7, 2) == 1
|
|
assert pow(7, 2, 49) == 0
|