- Make your curtains smartPosted 8 mins ago
- Configuring an ESP8266 for Battery PowerPosted 3 days ago
- Creating a Telegram Bot for ESP32Posted 4 days ago
- Mini Course on BlynkPosted 5 days ago
- Creating a Unique Electronic Musical Instrument: The Sound WallPosted 1 week ago
- Building a Laser MicroscopePosted 1 week ago
- Grand Piano Keys with ArduinoPosted 1 week ago
- Wireless Power TransferPosted 2 weeks ago
- Robot Punchers with ArduinoPosted 2 weeks ago
- A minimal 3D-printed scalePosted 2 weeks ago
Python for not engineers: How to automate boring stuff in a heartbeat!
“Learn to code” is the new mantra for the 21st century. What’s often lost in that statement is exactly what makes programming so useful if you’re not planning to switch careers and become a software engineer.
That was the beginning of a post dealing with Python programming for not experts. Why should you learn a programming language if you’re not interested in software dev?
Simple: because it is faster than doing a bunch of boring things, that you must do manually if you don’t know how to computerize that.
An example? A simple code to sort file in chronological order:
import os, shutil monthMapping = {'Jan': '1', 'Feb': '2', 'Mar': '3', 'Apr': '4', 'May': '5', 'Jun': '6', 'Jul': '7', 'Aug': '8', 'Sep': '9', 'Oct': '10', 'Nov': '11', 'Dec': '12'} for filename in os.listdir(): monthPart = filename[:3] yearPart = filename[3:7] newFilename = yearPart + '_' + monthMapping[monthPart] + '.csv' print('Renaming ' + filename + ' to ' + newFilename) #shutil.move(filename, newFilename)
full detail and sintax here: Automate the boring stuff with Python