Help me figuring out this python code function find attraction which doesn't seem to work. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Help me figuring out this python code function find attraction which doesn't seem to work.

The thing is function find_attraction is not giving any out put. I tried debugging it with printing each line still no output. Furthermore I tried to let's say print hi inside that function still no output. What's wrong with that function? I have attached my full code bit. https://code.sololearn.com/cj80IKZR85d7/?ref=app

14th Jul 2021, 11:41 AM
VINIT SHARMA
VINIT SHARMA - avatar
2 Answers
+ 2
last two lines of your code are indented, so inside find_attraction function after return statement... so find_attraction is never called: you must unindent them: la_arts = find_attractions("Los Angeles, USA", ['art']) print(la_carts)
14th Jul 2021, 11:52 AM
visph
visph - avatar
+ 1
visph Thanks a bunch it was such a minor mistake and I didn't even realise(was going through logic , spellings and all) ......... Will need to be more careful with indentation in future btw any tips for that?
14th Jul 2021, 12:00 PM
VINIT SHARMA
VINIT SHARMA - avatar