1from google.colab import files
2import pandas as pd
3result.to_csv('example_file.csv')
4files.download('example_file.csv')
1from google.colab import files
2
3with open('example.txt', 'w') as f:
4 f.write('some content')
5
6files.download('example.txt')