How to check if a file exists in path using Python? There are 2 functions available in Python to check this directly using os.path. Try the below Python code snippet. Both functions take same parameter (file path) & return a boolean response. i.e., True if file exists or False if […]
Unzip all files to Directory using Python Zipfile
Extract Files from Zip Archive to Folder – Unzip Use this code to extract or unzip all the files in a Zip file. The files will be extracted to a folder with actual directory structure in one go. Just like adding files to a Zip archvie this code also uses […]
Python Sort List Function – Ascending or Descending
Sort Function in Python Code In Python, You can sort a list or array of numbers & strings using the built in function. The code below creates a numeric & string array. Then sorts is ascending & descending. The default is ascending. Lets see how do this with a Python […]
Get list of Folders in directory path – Python
Print Directory List in Python To get list of sub-directories present in a computer folder, use the code below. Edit the folder path mentioned in the variable “folder_path”. Then execute this ready to use code. It will print the sub-directories name one by one. #List all subdirectories in a folder […]
How to Zip Directory using Python? – Archive folder
Archive or Zip all files in Directory The code in this page will Zip directory full of files. It will first get folder path as input. Then loop thru the directory & its sub-directories to get all the files list. Then each file in the list is added to the […]
How to run a .exe file using Python?
import sys, string, os os.popen(r”path”) To run the outside executable file in your computer through Python, this is the easiest way. You need to download an executable file and save it in a folder. Write the exe file path in the code above given. Now you can run the executable […]
How to shutdown a computer using Python?
import os os.system(‘shutdown -s’) This coding for shutdown the computer eventually. After running this code, a message saying “You are about to be signed out in less than a minute” We can avoid that message – os.system(‘shutdown -s -t 0’) instead of using os.system(‘shutdown -s’) will immediately get shut down.
How to get username in Python?
Print Current User Account Name in Python Here is the simple way to get the user name by using python code. You can get your username without making any changes in the below code. import getpass username = getpass.getuser() print (username) This command directly gets the user name and returns […]
Fiverr Disabled – Issues with Freelancer Sites – My Experiences
Best Freelance Platforms As usual I signed up with lot of freelance websites like Upwork, Guru, Remote, Fiverr & Freelancer Out of all these, Fiverr worked out very well for more than a Year back in 2018. You can also make lot of money from these websites, just like how […]
Python Program To Check Palindrome
Get the Python code snippet to check whether the string passed as parameter is Palindrome or not.