What happens when your bored

   #Little Script to get Python Path
   #I was bored
   import sys

  def print_path(list):
       #print Python system path
       for x in list:
         print(*x) 

   path = sys.path
   print_path(path)

Comments

Sign In or Register to comment.