Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python get current directory

import os

print(os.getcwd())
Comment

os get current directory

import os

#Get Current working Directory
currentDirectory = os.getcwd()

#Change the Current working Directory
os.chdir('/home/varun')
Comment

get current directory python

import os
current_working_directory = os.getcwd()
print(current_working_directory) # should print the cwd

""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
Comment

Python Get Current Directory

>>> import os

>>> os.getcwd()
'C:Program FilesPyScripter'

>>> os.getcwdb()
b'C:Program FilesPyScripter'
Comment

PREVIOUS NEXT
Code Example
Python :: python open new chrome tab 
Python :: qtimer python 
Python :: generate random string python 
Python :: python - remove scientific notation 
Python :: membercount discord.py 
Python :: f-string ponto decimal python 
Python :: python: transform as type numeirc 
Python :: Cool codes for Python 
Python :: how to pause code for some time in python 
Python :: python matplotlib plot thickness 
Python :: how to open local html file in python 
Python :: draw spiral in matplotlib 
Python :: import NoSuchKey in boto3 
Python :: how to make it so the pygame window will close 
Python :: generate a list of random non repeated numbers python 
Python :: argparse mutually exclusive 
Python :: display max rows pandas 
Python :: how to plot 2 decimal values in axis python 
Python :: python csv write add new line 
Python :: how to apply logarithm in pandas dataframe 
Python :: how to find the calendar week python 
Python :: ipywidgets pip 
Python :: print specific part in bold or colours and end. 
Python :: how to sum the revenue from every day in a dataframe python 
Python :: how to read csv file online into pandas 
Python :: python month number from date 
Python :: how to order ints from greatest to least python 
Python :: convert integer to datetime in python 
Python :: last element in dictionary python 
Python :: update link python is python 3 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =