004.【Python Basics】 Calculate and See the Result

🧮 You Can Calculate with Python

With Python, you can
write a formula and get the result just by pressing ▶.

In this article, using VS Code, we focus on the minimal workflow:


✅ What You Can Do


⚡ Demo: Ohm’s Law (V–I)

R = 100.0   # resistance [ohm]
I = 0.02    # current [A]

V = R * I   # voltage [V]

print("R =", R, "ohm")
print("I =", I, "A")
print("V =", V, "V")

▶ Running in VS Code

python_basic_01


💡 Key Points

👉 You do not need to memorize syntax here.


📝 Summary

That understanding is enough for now.