Python Forum
SyntaxError: positional argument follows keyword argument
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SyntaxError: positional argument follows keyword argument
#4
(Mar-03-2020, 12:57 AM)syd_jat Wrote: What exactly is Python complaining about, is it use of variable called 'third' which isn't defined before it is referenced in the one liner print statement?
it's complaining because you pass keyword arguments, like 'end' and 'third' (which at later stage will raise unexpected keyword argument error anyway) then positional arguments "And another number:"

the one-liner solution with f-strings is
print(f"The answer is: {int(input('Enter first: ')) + int(input('Enter second: '))}")

but this is really terrible un-pythonic code and I strongly advise against it
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
RE: SyntaxError: positional argument follows keyword argument - by buran - Mar-03-2020, 08:34 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  TypeError: Diagram.render() takes 1 positional argument but 2 were given sachin1361 0 293 Apr-23-2024, 06:39 AM
Last Post: sachin1361
  501 Server cannot accept argument anna17 0 276 Apr-11-2024, 01:08 AM
Last Post: anna17
  Django "Unexpected Keyword Argument 'min_value'" AstralWeeks 0 297 Mar-27-2024, 04:56 AM
Last Post: AstralWeeks
  File is not being created with 'w' argument CAD79 3 514 Mar-14-2024, 12:05 PM
Last Post: snippsat
  __init__() got multiple values for argument 'schema' dawid294 4 2,851 Jan-03-2024, 09:42 AM
Last Post: buran
  mutable argument in function definition akbarza 1 543 Dec-15-2023, 02:00 PM
Last Post: deanhystad
  Find a specific keyword after another keyword and change the output sgtmcc 5 928 Oct-05-2023, 07:41 PM
Last Post: deanhystad
  Strange argument count error rowan_bradley 3 804 Aug-06-2023, 10:58 AM
Last Post: rowan_bradley
  Invalid argument: 'images\x08ackground.jpg' CatBall 4 1,047 Jun-19-2023, 09:28 AM
Last Post: CatBall
Information How to take url in telegram bot user input and put it as an argument in a function? askfriends 0 1,174 Dec-25-2022, 03:00 PM
Last Post: askfriends

Forum Jump:

User Panel Messages

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