Python Forum
"Invalid Syntax" (I am a new coder)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"Invalid Syntax" (I am a new coder)
#1
I started to learn programming yesterday and today I wanted to make a function about our grade system. Unfortunatley i don't know why i got "SyntaError: invalid syntax"

This was my code:

def merit(a, b, c, d, e, f, m):
return ((a * 2000 + b * 1750 + c * 1500 + d * 1250 + e * 1000 + f* 0)/(100 * (a + b + c + d + e + f)) + m)
freshman_grades = merit(4, 2, 0, 0, 0, 0, 2.5)
SyntaxError: invalid syntax, it also underlines "freshman_grades" for some reason.

Appreciate any help I can get!

/Marius
Reply
#2
you must indent the line after def

def merit(a, b, c, d, e, f, m):
    return ((a * 2000 + b * 1750 + c * 1500 + d * 1250 + e * 1000 + f* 0)/(100 * (a + b + c + d + e + f)) + m)
freshman_grades = merit(4, 2, 0, 0, 0, 0, 2.5)
print(freshman_grades)
Reply
#3
(Sep-07-2018, 09:13 PM)Axel_Erfurt Wrote: you must indent the line after def

def merit(a, b, c, d, e, f, m):
          return ((a * 2000 + b * 1750 + c * 1500 + d * 1250 + e * 1000 + f* 0)/(100 * (a + b + c + d + e + f)) + m)
freshman_grades = merit(4, 2, 0, 0, 0, 0, 2.5)
print(freshman_grades)

Sorry for the bad presentation of my code but i have actually indented my code, I can't get the indention to show up though D:

When i copied your code i still got Invalid Syntax, which is very weird.

Thanks anyways!
Reply
#4
No syntax errors there. Are you perhaps mixing tabs and spaces?
Please post a copy of your exact error.
Reply
#5
def merit(a, b, c, d, e, f, m):
	return ((a * 2000 + b * 1750 + c * 1500 + d * 1250 + e * 1000 + f * 0)/(100 * (a + b + c + d + e + f)) + m)
freshman_grades = merit(4, 2, 0, 0, 0, 0, 2.5)
There you go! It seems to think that freshman_grades is the error for some reason.
Reply
#6
(Sep-07-2018, 09:17 PM)Marius2002 Wrote: Sorry for the bad presentation of my code but i have actually indented my code, I can't get the indention to show up though D:
Look at BBCode.
(Sep-07-2018, 09:17 PM)Marius2002 Wrote: When i copied your code i still got Invalid Syntax, which is very weird.
Do you copy into IDLE, has >>> ?
It's for interactive testing line bye line based.

If copy in whole code has to use New File.
The a new window open,paste or write in code as save with .py extension.
Run -> Run Module(F5).
Reply
#7
(Sep-07-2018, 09:39 PM)snippsat Wrote:
(Sep-07-2018, 09:17 PM)Marius2002 Wrote: Sorry for the bad presentation of my code but i have actually indented my code, I can't get the indention to show up though D:
Look at BBCode.
(Sep-07-2018, 09:17 PM)Marius2002 Wrote: When i copied your code i still got Invalid Syntax, which is very weird.
Do you copy into IDLE, has >>> ?
It's for interactive testing line bye line based.

If copy in whole code has to use New File.
The a new window open,paste or write in code as save with .py extension.
Run -> Run Module(F5).

Could you rephrase that a little, since I am very new i can't really understand what you mean.
Reply
#8
What do you use to run your code and OS as python works on all platforms Windows,Linux and Mac.
IDLE can often be what people start with.
Here image i used before to explain it.
[Image: Wn7asS.jpg]
Reply
#9
(Sep-07-2018, 10:15 PM)snippsat Wrote: What do you use to run your code and OS as python works on all platforms Windows,Linux and Mac.
IDLE can often be what people start with.
Here image i used before to explain it.
[Image: Wn7asS.jpg]

Thnak you so much! Now it works!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [NEW CODER] TypeError: Object is not callable iwantyoursec 5 1,381 Aug-23-2023, 06:21 PM
Last Post: deanhystad
  print(data) is suddenly invalid syntax db042190 6 1,212 Jun-14-2023, 02:55 PM
Last Post: deanhystad
  SyntaxError: invalid syntax ?? korenron 15 5,785 Jan-25-2022, 11:46 AM
Last Post: korenron
  Invalid syntax with an f-string Mark17 7 7,862 Jan-14-2022, 04:44 PM
Last Post: Mark17
  invalid syntax in my class CompleteNewb 2 1,920 Dec-13-2021, 09:39 AM
Last Post: Larz60+
Exclamation Invalid syntax error(Predict Ethereum Price) lulu43366 2 3,180 Sep-24-2021, 01:24 PM
Last Post: lulu43366
  Unexplained Invalid syntax Error cybertooth 5 3,281 Aug-02-2021, 10:05 AM
Last Post: cybertooth
  [split] SyntaxError: invalid syntax Code_X 3 2,773 May-04-2021, 05:15 PM
Last Post: Yoriz
  Invalid syntax error - need help fixing calgk01 3 3,301 Feb-23-2021, 08:41 PM
Last Post: nilamo
  Invalid syntax using conditionals if - else jperezqu 1 2,345 Jan-13-2021, 07:32 PM
Last Post: bowlofred

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020