What is displayed after the following code is entered into a Python interpreter?
addition = 22 +10 print(addition)
- nothing ( because the print command is wrong)
- 32
- [22]+[10]
- (syntaxerror)-…as there should not be a space between the numerical values
addition = 22 +10 print(addition)