JUN7

Pembelajaran python dengan mathematic wolfram

Jan 11th, 2021 (edited)
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. import wolframalpha
  2.  
  3. client = wolframalpha.Client('P36ER3-2H4K24XKWR')
  4.  
  5. while True:
  6.     query=str(input('Query'))
  7.     res=client.query(query)
  8.     output=next(res.results).text
  9.     print(output)
  10.  
Add Comment
Please, Sign In to add comment