3.0.2 Export to file with custom delimiter
Example:
##### Export to Carrot-Delimited text file (.txt), or other delimiter
# Changing the parameter sep = 'x' to the delimiter of your dreams
DF_Titanic.to_csv("/Path/to/your/data.txt"
, sep ='^'
, index = False)