Skip to main content
🔒 Preview mode. The first 15 Foundations lessons are free; this one is Pro. Start a 7-day trial to unlock the editor, AI hints and the rest of the curriculum. Card required, cancel any time in Dashboard.
Start 7-day trial →
⚡
← Courses
›
Python Foundations
›
Module 4 · Object-oriented programming
›
Find the bug: int() in a row
fix
57 / 174
🇺🇸
EN
▼
↗
Share
⋯
More
+75 XP
📋
Task
📖
Theory
🤖
AI Help
Task
📝 **Task:** Program crashes on `int("3.14")`. Replace `int` with `float`. 📋 `int("3.14")` → ValueError. `float("3.14")` → 3.14. 💡 **Rule:** `int()` only accepts integer strings. Use `float()` for decimals. 🎯 **Expected output:** `3.14`
✏️ Write your code here
🐍
Loading Python...
One-time download (~1 MB). Then it runs instantly.
⏳ Loading Python...
📊 Result
Press Run to see result...
💬 Discussion
Be the first to ask a question or share a tip.
Sign in
to join the discussion. Reading is free.
Loading discussion…