Addition
Addition in Python is easy - just use "+" sign. You can add numbers or variables (or mix of numbers and variables).
1234a = 1 b = 2 c = a + b print(c)
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"):
123x = 100 x+=1 print(x)
Swipe to start coding
Add line to print the sum of 20 and 22.
Lösning
Tack för dina kommentarer!
single
Fråga AI
Fråga AI
Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal
Awesome!
Completion rate improved to 2.33Awesome!
Completion rate improved to 2.33
Addition
Addition in Python is easy - just use "+" sign. You can add numbers or variables (or mix of numbers and variables).
1234a = 1 b = 2 c = a + b print(c)
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"):
123x = 100 x+=1 print(x)
Swipe to start coding
Add line to print the sum of 20 and 22.
Lösning
Tack för dina kommentarer!
single
Awesome!
Completion rate improved to 2.33
Addition
Svep för att visa menyn
Addition in Python is easy - just use "+" sign. You can add numbers or variables (or mix of numbers and variables).
1234a = 1 b = 2 c = a + b print(c)
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"):
123x = 100 x+=1 print(x)
Swipe to start coding
Add line to print the sum of 20 and 22.
Lösning
Tack för dina kommentarer!