#๐Ÿ”’ Why i cant get a single tuple?

7 messages ยท Page 1 of 1 (latest)

sonic sinew
#

while True:
    try:
        screen_image_path = findimage.capture_screen()
        coordz = 'coordz.png'

        coordinates = findimage.coordz(screen_image_path, coordz)
        
        
        if coordinates:
            currentmetin = tuple(coordinates[0])  
            print("Current coordz found at coordinates:", currentcoordz)
        
        sleep(5)
    except Exception as e:
        print("An error occurred:", e)```

Even tought my coordinates[0] is there always get this output

Curent Coord  found at coordinates: [(385, 275), (173, 314), (702, 346), (477, 409)]
crimson dewBOT
#

@sonic sinew

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

dusk bison
#

you are printing the list of tuples

#

do print(currentmin) instead

verbal cypress
#

you're printing currentcoordz, which isn't mentioned elsewhere in this snippet at all

crimson dewBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.