054.rar

def get_file_size_feature(file_path): """Return the file size in bytes.""" return os.path.getsize(file_path)

file_path = '054.rar'

# File size feature file_size_feature = get_file_size_feature(file_path) print(f"File Size Feature: {file_size_feature}") 054.rar