Stocker dans une variable l'ocntent d'un fichier python
with open('countries.txt','r') as file:
countriesStr = file.read()
#######Yes, you can print it like a normal string
Perfect Piranha