Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gmolveau
GitHub Repository: gmolveau/python_full_course
Path: blob/master/exercices/f.py
305 views
1
with open("data.txt") as f, open('d.txt') as p:
2
for line in f.readlines():
3
print(line)
4
5
# pour windows:
6
# Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
7
# .\venv\Scripts\Activate.ps1
8