Q12Numerical3 Marks7 Jul 2024
What is the output of the following snippet of code? Enter an integer as your answer.
```
str1 = "Paradox"
str2 = "Celebration"
str3 = str1 + " " + str2[:6] # There is single space in between quote
print(len(str3))
```
Press Enter to check.