6 lines
115 B
Python
6 lines
115 B
Python
import os
|
|
|
|
|
|
def Title(title: str):
|
|
return str(os.path.basename(title)).split('.')[0].title().replace('_', ' ')
|