Q12.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))
```
Save
Check
Details
Q12
7 Jul 2024
Q12.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))
```