2,174 Visitors
— Advertisement —

🐍 Python Programs & Scripts

Free Python scripts for beginners to professionals. Automation, Data Science, Web Development and more!

30+
Python Programs
100%
Open Source
Docs
Documented
Free
Always Free
— Advertisement —

30 Python Programs

The best collection of free Python scripts – Updated daily!

Online

Python_Einstieg

Dein erster keiner Bot Google Suche Bot

Recommended Python
example1.py
                

# Warten bis die Seite geladen ist
time.sleep(3)

            
        
example2.py
                

print("Hallo Welt")
    for i in range(5):
    print(i)
    
                
            
example3.py
                  

# Maus in die Bildschirmmitte bewegen
center_x = screen_width // 2
center_y = screen_height // 2
pyautogui.moveTo(center_x, center_y, duration=1)

# 200 Pixel nach oben bewegen
pyautogui.moveRel(0, -200, duration=1)

    
                
            
example4.py
                  

# Maus in die Bildschirmmitte bewegen
center_x = screen_width // 2
center_y = screen_height // 2
pyautogui.moveTo(center_x, center_y, duration=1)

# 200 Pixel nach oben bewegen
pyautogui.moveRel(0, -200, duration=1)

    
                
            
example5.py
                  


# Suchtext eingeben
pyautogui.write("was kann python alles", interval=0.05)

    
                
            
example6.py
                  

# Enter drücken
pyautogui.press("enter")

    
                
            

Python Updates Every Week!

Subscribe for new Python scripts & tutorials