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