Notice
Recent Posts
Recent Comments
목록multiplication table (1)
준호씨의 블로그
Python - 구구단. Multiplication Table
파이썬으로 구구단을 다양하게 만들어 봅니다. 단순 구구단 for i in range(1, 10): for j in range(1, 10): print(f'{i} x {j} = {i * j}') 1단부터 9단까지 출력합니다. 1 x 1 = 1 1 x 2 = 2 ... 9 x 8 = 72 9 x 9 = 81 2단부터 출력하고 싶다면 첫 번째 줄의 1을 2로 고치면 됩니다. 단을 입력받기 def print_multiplication_table(number): for i in range(1, 10): result = number * i print(f"{number} x {i} = {result}") if __name__ == "__main__": try: input_number = int(input("구구단을 ..
개발이야기
2023. 7. 24. 00:09