gugudan
-
[Python] multiplication table using itertools module. (itertools을 이용한 구구단)Python/Python Programming 2019. 10. 10. 14:41
파이썬의 itertools 모듈의 product 메소드를 이용한 구구단 만들기 import itertools for x in itertools.product([ x for x in range(2,10,1)],[ x for x in range(1,10,1)]): print(str(x[0]), '*', str(x[1]), '=',str(x[0]*x[1])) ----------------------------------------------------------- 2 * 1 = 2 2 * 2 = 4 2 * 3 = 6 2 * 4 = 8 2 * 5 = 10 2 * 6 = 12 2 * 7 = 14 2 * 8 = 16 2 * 9 = 18 3 * 1 = 3 3 * 2 = 6 3 * 3 = 9 3 * 4 = 12 3 *..