def strings_greater_than_length(s, length):
result = []
word_lst = s.split(" ")
for word in word_lst:
if len(word) > length:
result.append(word)
return result
s = "Python is a high level general purpose programming language"
length = 6
print(strings_greater_than_length(s, length))
'''
run:
['general', 'purpose', 'programming', 'language']
'''