Addition¶
Addition operator (=) can be used to add two numbers or concate two strings.
Syntax
operand1 + operand2
Example
3 + 2
# 5
"Hello" + " World"
# Hello World
"Hello " + 1
# Hello1