Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
288 views
in Technique[技术] by (71.8m points)

python - TypeError: Missing one required positional argument

I am working on a game as a side project for fun and I have run into this error and I really don't know why it is happening...

Here is the code:

class players:
    def __init__(self, location, image_file, direction):
        self.location = location
        self.image_file = image_file
        self.direction = direction
        self.rect = self.image_file.get_rect()

    def turn(self, direction, playerImages):
        keys = pygame.key.get_pressed()
        if keys[pygame.K_a] == True:
            self.direction -= 1
            if self.direction < -3:
                self.direction = 3
        if keys[pygame.K_d] == True:
            self.direction = 1
            if self.direction > 3:
                self.direction = 3

        if self.direction == -3:
            self.image_file = playerImages[0]
        if self.direction == -2:
            self.image_file = playerImages[1]
        if self.direction == -1:
            self.image_file = playerImages[2]
        if self.direction == 0:
            self.image_file = playerImages[3]
        if self.direction == 1:
            self.image_file = playerImages[4]
        if self.direction == 2:
            self.image_file = playerImages[5]
        if self.direction == 3:
            self.image_file = playerImages[6]

        return self.direction, self.image_file

I call it like:

skierDirection, playerImage = players.turn(skierDirection, playerImages)

The error I get is:

Traceback (most recent call last):
  File "C:UsersOwenDesktopcoding compile fileSkiFreeXSkiFreeX.py", line 129, in <module>
    main()
  File "C:UsersOwenDesktopcoding compile fileSkiFreeXSkiFreeX.py", line 122, in main
    skierDirection, playerImage = players.turn(skierDirection, playerImages)
TypeError: turn() missing 1 required positional argument: 'playerImages'
[Finished in 0.385s]

Any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You are not supposed to call a class method directly, instead create an instance of that class:

p1 = players(your, values, here)
skierDirection, playerImage = p1.turn(skierDirection, playerImages)

To elaborate on the error you're getting:

TypeError: turn() missing 1 required positional argument: 'playerImages'

It's because turn needs an instance of players as first argument (self). A class method always gets passed the instance as the first argument, thus p1.turn(skierDirection, playerImages) will acutually pass 3 parameters to players.turn.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...