What is the output of the following code?
```
str1 = "Python"
str2 = "Programming"
str3 = str1 + " " + str2[:8] # There is single space in between quotes
print(len(str3))
```
Q19
16 Jul 2023
Programming in Python · Week 1
Q19.What is the output of the following code?
```
str1 = "Python"
str2 = "Programming"
str3 = str1 + " " + str2[:8] # There is single space in between quotes
print(len(str3))
```