Здраствуйте, я включил программу а мне вывело ошибку.
ошибка:
File "project.py", line 12
^
SyntaxError: unexpected EOF while parsing
код:
import pyowm
owm = pyowm.OWM('c209a4c2afb4328e0e8656a56da73425')
place = input("City:")
observation = owm.weather_at_place(place)
w = observation.get_weather()
temp = w.get_temperature('celsius')['temp']
wind = w.get_wind()
print(place+":")
print("Weather status in "+place+" is:"+w.get_detailed_status())
print("The Temperature in " +place+":"+str(temp)
подскажите пожалуйста как решить эту проблему
ошибка:
File "project.py", line 12
^
SyntaxError: unexpected EOF while parsing
код:
import pyowm
owm = pyowm.OWM('c209a4c2afb4328e0e8656a56da73425')
place = input("City:")
observation = owm.weather_at_place(place)
w = observation.get_weather()
temp = w.get_temperature('celsius')['temp']
wind = w.get_wind()
print(place+":")
print("Weather status in "+place+" is:"+w.get_detailed_status())
print("The Temperature in " +place+":"+str(temp)
подскажите пожалуйста как решить эту проблему