Turn Any Image into Stunning Grayscale with Just 3 Lines of Python!
from PIL import Image
img = Image.open("your_image.jpg").convert("L")
img.save("gray_image.jpg")
Instantly transform your images to grayscale using Python’s powerful Pillow library
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
from PIL import Image
img = Image.open("your_image.jpg").convert("L")
img.save("gray_image.jpg")
Instantly transform your images to grayscale using Python’s powerful Pillow library
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
❤4
Count the number of words in any text file in just one line.
Use in: Python script / Terminal / Colab
Code:
print(len(open("file.txt").read().split()))
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
Use in: Python script / Terminal / Colab
Code:
print(len(open("file.txt").read().split()))
Stay tuned with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
🔥3
Generate a strong random password instantly no need to Google one!
import random; print(''.join(random.choices('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%', k=12)))
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
import random; print(''.join(random.choices('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%', k=12)))
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
👍2🔥2❤1
Quickly locate files by name or type.
Fast and efficient file searching, right from your terminal.
find . -name "*.pdf"
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
Fast and efficient file searching, right from your terminal.
find . -name "*.pdf"
connect with INFNOVA: https://linktr.ee/infnova_tech
#INFNOVA #INFNOVATechnologies #infnova_tech #INFNOVACommunity #CreateLearnInnovate #CodeTerminal #TechTips #github #Makers #EthiopiaTech #AfricanTech #Innovation #Programming #Coding #Software
👍2