예제 #1
0
파일: b.py 프로젝트: sgmpy/TIL
import a
import my_math

print(my_math.add(2, 3))
print(my_math.mul(2, 3))
예제 #2
0
파일: b.py 프로젝트: kimyounghoon93/TIL
import a
from my_math import add, mul
#import my_math
#print(my_math.add(2,3))
#print(my_math.mul(2,3))
print(add(2, 3))
print(mul(2, 3))
import random
#컨트롤 누르고 명령어 누르면 상세보기 나옴
예제 #3
0
def test_mul2():
	expected = -10
	ret = math.mul(2, -5)
	assert ret == expected
예제 #4
0
def test_mul():
	expected = 10
	ret = math.mul(2, 5)
	assert ret == expected
예제 #5
0
파일: main.py 프로젝트: xiaoy/Exercise
# this program is used for exercise module

import my_math

print my_math.add(1, 2, 3)

print my_math.sub(10, 9, my_math.add(7, 8))

print my_math.mul(1, 2)
예제 #6
0
파일: b.py 프로젝트: pjh6315/TIL
import a
import my_math
import random

print(my_math.add(5, 6))
print(my_math.mul(2, 64))