Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. place = input("Enter your location: ")
  2.  
  3. observation = owm.weather_at_place(place)
  4. w = observation.get_weather()
  5.  
  6. temp = w.get_temperature("celsius")["temp"]
  7.  
  8. DocumentsPythonpyowm.py", line 7
  9. observation = owm.weather_at_place('place)
  10. ^
  11. SyntaxError: EOL while scanning string literal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement