Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Oppiskele Addition | Arithmetic operations
Learn Python from Scratch

book
Addition

Addition in Python is easy - just use "+" sign. You can add numbers or variables (or mix of numbers and variables).

a = 1
b = 2
c = a + b
print(c)
1234
a = 1 b = 2 c = a + b print(c)
copy

Sometimes people use alternative operator: "+=" (it is typically used for brevity). Please see example below (this basically means "increase variable on the left hand side by 1"):

x = 100
x+=1
print(x)
123
x = 100 x+=1 print(x)
copy
Tehtävä

Swipe to start coding

Add line to print the sum of 20 and 22.

Ratkaisu

# Add line below to print the sum of 20 and 22
print(20 + 22)



Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 2. Luku 1
# Add line below to print the sum of 20 and 22





Kysy tekoälyä

expand
ChatGPT

Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme

We use cookies to make your experience better!
some-alt