Med in Tzfat
ראשי
פייתון
סקרים
משוואת גזים
מחשבון כימיה
מחלץ טקסט
סידור
ממיר PDF
איזון תרכובות
עזרה ראשונה - פייתון בדפדפן
Toggle Theme
Toggle Indent Guide
Copy Code
Loading Python...
Debug
Running code...
Step Back
Step Forward
Python Code
def calculate_squares(): # This is a correct function squares = [] for i in range(5): squares.append(i ** 2) return squares # Try introducing an error by bad indentation def bad_function(): print("This line has wrong indentation") # Error will be shown # Try using undefined variable result = undefined_variable # Error will be shown print("Running calculation...") result = calculate_squares() print(f"Squares: {result}")
Output