Click here to Skip to main content
15,900,466 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
import wikipedia

def check_on_wikipedia(query):
  query = query.lower()
  query = query.replace("what is","")
  query = query.strip
  
  try:
    data = wikipedia.summary(query, sentences=2)
    return data
  
  except Exception as e:
    return " "
  
check_on_wikipedia("what is Facebook")


What I have tried:

I tried everything , error has been occure
Posted
Updated 30-Jul-20 5:52am
Comments
Sandeep Mewara 30-Jul-20 11:47am    
What error?
Richard MacCutchan 30-Jul-20 12:25pm    
Well not everything. The one thing you failed to do was to print the details of the exception.

Try this, error block is not right:
Python
def check_on_wikipedia(query):
  query = query.lower()
  query = query.replace("what is","")
  query = query.strip
  try:
    #data = wikipedia.summary(query, sentences=2)
    #return data
    print('Inside try')
  except:
    print('Error Occured')
  
check_on_wikipedia("what is Facebook")

Refer: Python Try Except[^]
 
Share this answer
 
v2
You need to look at the actual exception to find out what it is complaining about - and we can't do that for you!

So, it's going to be up to you.
Fortunately, you have a tool available to you which will help you find out what is going on: the debugger. How you use it depends on your compiler system, but a quick Google for the name of your IDE and "debugger" should give you the info you need. Try "python debugger tutorial" if you aren't sure, it should help.

Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.

Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900