This commit is contained in:
blueloveTH 2023-06-16 00:46:03 +08:00
parent 9ea76aee85
commit d7e277e822
2 changed files with 19 additions and 16 deletions

View File

@ -29,4 +29,22 @@ else:
if inq is not 1:
assert True
if inq is not 0:
assert False
assert False
assert pow(2,5000,2**59-1) == 17592186044416
def g(x):
return x
def f(x):
return x
assert (g(1), 2) == (1, 2)
assert (
g(1),
2
) == (1, 2)
assert f((
g(1),
2
)) == (1, 2)

View File

@ -1,15 +0,0 @@
def g(x):
return x
def f(x):
return x
assert (g(1), 2) == (1, 2)
assert (
g(1),
2
) == (1, 2)
assert f((
g(1),
2
)) == (1, 2)