Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python automation word from a sentence

Snippet info

Language

Python

Visibility

public

Author

dharmendrarah

Created

2023-01-10T06:37:40.719566Z

Updated

2023-01-10T06:37:40.719566Z


import re
s1="go to heaven"
r=re.compile(r'\w{6}')
result=re.findall(r,s1)
print(result)
INFO