What will be the output of the following code snippet? Enter an integer as your answer.
```
words = ['Learning', 'Python', 'is', 'fun']
final_str = ' ' # Single Space
final_str = final_str.join(words)
final_str.strip("osle")
print(len(final_str))
```