Kode Python untuk menghapus ekstensi file

import os
print os.path.splitext("sample.txt")[0]
Healthy Hawk