Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Perform Simple Math in Python | First Acquaintance with Python
Introduction to Python (dev copy) (copy) 1769011330820
セクション 1.  3
single

single

bookPerform Simple Math in Python

メニューを表示するにはスワイプしてください

Python excels at crunching numbers. It supports various mathematical operations, from basic arithmetic to complex calculations.

Use the print() function to display results. Mathematical expressions don’t require quotation marks ("..." or '...'), unlike text.

1234567891011
# Addition print(1039 + 948) # Subtraction print(10484 - 9274) # Multiplication print(116 * 99) # Division print(95873 / 472)
copy
タスク

スワイプしてコーディングを開始

  1. Compute the following and print the outcomes:

    • 2580 added to 198.
    • 23 times 42.
    • 1512 divided by 27.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt