Die Suche ergab 6 Treffer
- Donnerstag 8. Dezember 2022, 09:42
- Forum: Wissenschaftliches Rechnen
- Thema: python fehler
- Antworten: 10
- Zugriffe: 5144
python fehler
ValueError: Exceeds the limit (4300) for integer string conversion; use sys.set_int_max_str_digits() to increase the limit
- Samstag 29. Oktober 2022, 17:57
- Forum: Installation/Konfigurieren
- Thema: Fehler bei pip install auto-py-to-exe
- Antworten: 2
- Zugriffe: 2355
Fehler bei pip install auto-py-to-exe
auto-py-to-exe lässt sich nicht installieren.
- Samstag 29. Oktober 2022, 17:51
- Forum: Installation/Konfigurieren
- Thema: Fehler bei pip install auto-py-to-exe
- Antworten: 2
- Zugriffe: 2355
Fehler bei pip install auto-py-to-exe
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure
Encountered error while trying to install package.
greenlet
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
[end ...
error: legacy-install-failure
Encountered error while trying to install package.
greenlet
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
[end ...
- Freitag 28. Oktober 2022, 16:26
- Forum: Allgemeine Fragen
- Thema: funktion widerhole
- Antworten: 1
- Zugriffe: 280
funktion widerhole
wie kann man machen das der button mehrmals gedrückt wird
from pyautogui import locateCenterOnScreen, click
def click_button(image):
while True:
position = locateCenterOnScreen(image, confidence=0.90)
if position:
break
x,y =position
click(x, y)
return
image = 'button.png ...
from pyautogui import locateCenterOnScreen, click
def click_button(image):
while True:
position = locateCenterOnScreen(image, confidence=0.90)
if position:
break
x,y =position
click(x, y)
return
image = 'button.png ...
- Montag 5. September 2022, 15:48
- Forum: Allgemeine Fragen
- Thema: passwort eingeben
- Antworten: 2
- Zugriffe: 335
passwort eingeben
e =input("passwot:")
if e =="t":
print ("Richtiges passwort")
if e =="2":
print ("Richtiges passwort")
else:
print ("falsches Passwort")
Wieso kommt Richtiges passwort und
falsches passwort raus wenn ich t Eingebe
if e =="t":
print ("Richtiges passwort")
if e =="2":
print ("Richtiges passwort")
else:
print ("falsches Passwort")
Wieso kommt Richtiges passwort und
falsches passwort raus wenn ich t Eingebe
- Sonntag 21. August 2022, 22:24
- Forum: Allgemeine Fragen
- Thema: quiz
- Antworten: 1
- Zugriffe: 402
quiz
print("2*2.")
answer = input("deine Antwort: ")
if answer == "Vier":
print("richtig")
wie kann man machen das auch ein kleine v als richtig erkannt wird.
answer = input("deine Antwort: ")
if answer == "Vier":
print("richtig")
wie kann man machen das auch ein kleine v als richtig erkannt wird.
