Learn practical skills, build real-world projects, and advance your career
import os
# Current working directory
os.getcwd()
'c:\\Users\\henri\\Documents\\Python\\YouTube _vids'
os.listdir('.')
['.jovianrc',
 '.vscode',
 'climate.txt',
 'climate_results.txt',
 'first-step-with-python.ipynb',
 'freeCodeCamp.ipynb',
 'HelloWorld.py',
 'numerical-computing-numpy.ipynb',
 'reading-files-from-jupyter.ipynb']
os.makedirs('./data', exist_ok=True)
import urllib.request