s = "Python Programming Language";
# Remove spaces from the string
string_without_spaces = s.replace(" ", "")
length_without_spaces = len(string_without_spaces)
print("Length without spaces:", length_without_spaces)
'''
run:
Length without spaces: 25
'''