Operators in Python

Let's dive more into Operators

💡 This excercise will put everything in action you have learned so far-

💡 Write a code below

Create two variables of integer type

You can use any name for the variables and any number

Add both numbers

print the result

** Use flip card to see solution if you are not able to complete **

Type code below in textbox

Output:

    
Click to Reveal Solution
number1 = 10
number2 = 15
result = number1 + number2
print(result)