So I have this python code that I\'m to run in my mac\'s terminal but when I try running it with python in the terminal it gives me a syntax error on line 27 like so:
self.data = raw_input(‘Enter Pressure,Temperature,WindDirection:’)
This should be;
self.data = raw_input('Enter Pressure,Temperature,WindDirection:')
or
self.data = raw_input("Enter Pressure,Temperature,WindDirection:")
You're using wrong quotes.