I can't determine why it's raising this SyntaxError [closed] - python

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 3 years ago.
Improve this question
https://pastebin.com/TZdMx3pM
Here's the code
This error is raised on line 291:
File "marketTrader.py", line 291
stock_list.remove(preferredStock[0])
^
SyntaxError: invalid syntax
I am runing on MacOS. Does it matter if I'm using Python 2 or 3?
Any help is greatly appreciated!

You forgot to close a parentheses on the previous line, 290.
This kind of syntax error does not depend on Python version or OS.
You could have spotted it easily using an IDE (e.g. PyCharm, EMACS) or a static analyser (e.g. pycheck).

It's a missing ')'
Check the line before:
print(': Starting Active Trader with preferred stock {}...'.format([preferredStock[0]])
stock_list.remove(preferredStock[0])
There is missing a close bracket for print.

Related

i can't seem to understand what is causing the error [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 1 year ago.
Improve this question
File "<ipython-input-193-4fdf3d1abd17>", line 1
ConfusionMatrix(y_data, model.predict(y_data() , label= ["not_subscribed", "subscribed"])
^
SyntaxError: unexpected EOF while parsing
You're missing an extra bracket, observe you have an EOF error. Try this
ConfusionMatrix(y_data, model.predict(y_data() , label= ["not_subscribed", "subscribed"]))
The python compiler is pretty friendly, as you can see where the error arrow is pointing to, most of time :)

Why are my variables highlighted in blue? [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
I have a dataframe called propertydf.
When I run my code I get a very vague error:
propertydf = propertydf[propertydf['fixed_price'].notna()].copy()
^
SyntaxError: invalid syntax
I checked the code and the dataframe variable has changed color to blue? But not all of them.
I also noticed some other variables are suddenly blue, such as year and date.
I think this is causing the error. How can I fix it?
In the line propertydf['fixed_price'] = fix_price((propertydf.iloc[:,[4]]) you open two parenthesis but only close one (It's above the line that throws the error).

Why is it giving me this syntax error? I’m following a tutorial. (Beginner) [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
It's saying there's a syntax error (seems simple enough) but I've double-checked the video (and my brain). I don't see why it would be saying that.
Been following this tutorial and taking notes to a T (if I need to include more code let me know).
I defined "run_test" and am entering the parameters in question. Help?
You have extra opening parenthesis before ‘str(len(...))’
There should be a closing brackets for str in print statement ')' , add this and your program will work
If i am not wrong, you haven't defined the list of questions yet. If you have defined your list of questions it is probably a typing error in your code. If there is the full code under the tutorial you are doing then i would compare my code to the code from the tutorial.

error while writing print statement [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
A very simple question but I am struggling.
I am learning through CBT Nuggets and in one video teacher says we use print statement from python 3 as that is more advanced. It means it can take parameters.
jim#jim-beam-VirtualBox:~/Documents/python$ cat 4_IO.py
print('Hellow World!'
print('Hello','World','!')
jim#jim-beam-VirtualBox:~/Documents/python$ python 4_IO.py
File "4_IO.py", line 2
print('Hello','World','!')
^
SyntaxError: invalid syntax
jim#jim-beam-VirtualBox:~/Documents/python$
What is this error and why I am getting and not the teacher when I using the same python version 2.7.10
jim#jim-beam-VirtualBox:~/Documents/python$ python --version
Python 2.7.10
jim#jim-beam-VirtualBox:~/Documents/python$
Your help would be really appreciated.
Its because you forgot the brace on the first line.
print('Hellow World!'
^--brace here

SyntaxError: invalid syntax (print function) [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
>>> x=[]
>>> for i in range(10):
x.append(i)
print(x)
SyntaxError: invalid syntax
I'm working with Python 3.5. I can't seem to get the print function working when it's not part of a loop. "print" gets highlighted as the source of the syntax error, but I can't seem to isolate the cause of the error. It prints perfectly well when part of a while or for loop. It's probably caused by a really silly oversight, and I would really appreciate if somebody could point it out.
If you are typing in console, you need to hit enter twice to end that statement. Which in your case, what you did is, you wrote print inside for without indentation. So it will show syntax error.

Categories

Resources