피보나치 수열을 인쇄하는 Python 프로그램
여기서 for 루프를 사용하여 피보나치 수열을 인쇄하는 Python 프로그램을 얻을 수 있습니다. 이전 두 항을 더하여 다음 항을 얻는 급수를 피보나치 급수라고 합니다. 예를 들어 0, 1, 1, 2, 3, 5, 8 입니다. . . . 피보나치 수열을 인쇄하는 Python 프로그램 num = int(input("enter number of digits you want in series (minimum 2): ")) first = 0 second = 1 print("\nfibonacci series is:") print(first, ",", second, end=", ") for i in range(2, num): next = first + second print(next, end=", ") first =..
2024. 1. 29.