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))
```
Save
Check
Details
Q19
16 Jul 2023
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))
```