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

Python
General Python

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

Sign up to bookmark this in your snippet library

Move & Rename Files Using Python
Python
General Python

Rename | Os | Files

3
2
Python For Else Loop
Python
General Python

Loop

2