speed =100distance =200time = distance / speedprint('it will take you', time, 'hours to reach the destination')
it will take you 2.0 hours to reach the destination
حساب ارتفاع المثلث عن طريق أطوال أضلاعه
import matha =3b =4c =5s = (a + b + c) /2area = math.sqrt(s * (s - a) * (s - b) * (s - c))h =2* area / cprint('the height of the triangle is', h)
the height of the triangle is 2.4
نسبة التغير
إذا كنت تصرف في الشهر 1,000 ريال لقضاء حاجياتك، ثم اتبعت استراتيجية معينة، وأردت أن تحسب نسبة التغير في مصروفك، فكيف تعرف النسبة إذا نزلت إلى 650 ريال؟