示例#1
0
def my_mod(*args):
  return _example.my_mod(*args)
示例#2
0
def my_mod(n: 'int', m: 'int') -> "int":
    return _example.my_mod(n, m)
示例#3
0
def my_mod(x, y):
    return _example.my_mod(x, y)
示例#4
0
def my_mod(n, m):
    return _example.my_mod(n, m)
def my_mod(*args):
    return _example.my_mod(*args)
示例#6
0
"""
call.py
"""

import _example
print _example.fact(5)
print _example.my_mod(7,3)
print _example.get_time()




示例#7
0
def my_mod(x, y):
    return _example.my_mod(x, y)
示例#8
0
def my_mod(x: 'int', y: 'int') -> "int":
    return _example.my_mod(x, y)