strings.remove_duplicate¶
Functions¶
|
Remove duplicates from sentence |
Module Contents¶
- strings.remove_duplicate.remove_duplicates(sentence: str) str ¶
Remove duplicates from sentence >>> remove_duplicates(“Python is great and Java is also great”) ‘Java Python also and great is’ >>> remove_duplicates(“Python is great and Java is also great”) ‘Java Python also and great is’