Seite 1 von 1
find_overlapping(x1, y1, x2, y2) in python 3.8.0
Verfasst: Mittwoch 8. Juli 2020, 21:05
von CODER123
Hallo zusammen
Ich bin im Internet auf den befehl find_overlapping(x1, y1, x2, y2) gestossen und habe feststellen müssen, dass er für Python 2.7 war. Gibt es etwas ähnliches für Python 3.8.0?
Re: find_overlapping(x1, y1, x2, y2) in python 3.8.0
Verfasst: Mittwoch 8. Juli 2020, 21:26
von Sirius3
Ich würde mal vermuten, er heißt in Python3.8 find_overlapping.
Wenn Du einen Fehler bekommst, zeige den Code und die komplette Fehlermeldung.
Re: find_overlapping(x1, y1, x2, y2) in python 3.8.0
Verfasst: Donnerstag 9. Juli 2020, 07:35
von DeaD_EyE
Re: find_overlapping(x1, y1, x2, y2) in python 3.8.0
Verfasst: Donnerstag 9. Juli 2020, 07:54
von sparrow
Code: Alles auswählen
Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> import tkinter as tk
>>> help(tk.Canvas.find_overlapping)
Help on function find_overlapping in module tkinter:
find_overlapping(self, x1, y1, x2, y2)
Return all items which overlap the rectangle
defined by X1,Y1,X2,Y2.