Sys Path Append - Appending a Directory to System Path with Python

Python

 1|  import sys
 2|  
 3|  sys.path.append('user/dt123/kaggle/forecasting_project')
 4|  
 5|  print(sys.path)
Did you find this snippet useful?

Sign up for free to to add this to your code library