+ 1
num = int(input()) def fibonacci(n): if n==1: return 0 elif n==2: return 1 else: return fibonacci (n-1) + fibonacci (
This is my code why it's not run
7 ответов
0
ARNAV SINGH , link your code to the Playground and provide it in the question, so somebody can help you. You paste is as text and obviously it's only a part.
0
TheWh¡teCat 🇧🇬 could you please tell me how can i link this?
0
ARNAV SINGH , from your profile - > code bits -> button "+" - >select language -> Python -> paste your code -> save it. Then add it here in your question.
0
TheWh¡teCat 🇧🇬 thanks dude
0
Usman Muhammed I'd check but i did not find?
0
This will help you:
https://code.sololearn.com/cv9BZ6u919Uk/?ref=app
0
because of your open parenthasis