4 lines
100 B
Python
4 lines
100 B
Python
import os
|
|
|
|
def Title(title: str):
|
|
return str(os.path.basename(title)).replace('.py', '').title() |