#python #anaconda #jupyter-notebook #visual-code #html #css #javascript #http

제목[re]step4 Function 구구단 프로그램 질문2022-03-20 22:28
작성자

아래와 같이 for 을 사용해서 간단하게 만들 수 있습니다.! 

def calcGugudan(x) :

for i in range(1,10):
print(x, "*", i, " = ", x * i)


if __name__ == "__main__":
calcGugudan(3)
댓글