Learn Python
110K subscribers
379 photos
8 videos
779 files
115 links
Download and watch the best premium Python Courses.

Buy ads: https://telega.io/c/LearnPython3
Download Telegram
🔅 Introduction to Data Science

🌐 Author: Lavanya Vijayan
🔰 Level: Beginner

Duration: 2h

🌀 Get to know the exciting world of data science in this beginner-friendly course.


📗 Topics: Data Science

📤 Join Learn Python for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2221💘6🔥1
Introduction to Data Science.zip
222 MB
📱Learn Python
📱Introduction to Data Science
Please open Telegram to view this post
VIEW IN TELEGRAM
👍275👎3🔥3
Ex_Files_Intro_to_Data_Science.zip
45.3 MB
📦 Exercise Files
👍1087🔥1
🔐 Hash a Password with Python

Secure your passwords by hashing them with Python and the hashlib library!

First, install the necessary module:
pip install hashlib


Then, use this script:
import hashlib

# https://t.me/LearnPython3

def hash_password(password):
# Create a new sha256 hash object
hash_obj = hashlib.sha256()
# Update the hash object with the bytes of the password
hash_obj.update(password.encode('utf-8'))
# Return the hexadecimal representation of the hash
return hash_obj.hexdigest()

password = 'mypassword'
hashed_password = hash_password(password)
print(hashed_password)


Ensure your passwords are secure by hashing them before storing!

📱 Join us for more Python tips: @LearnPython3
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6913👎43
Media is too big
VIEW IN TELEGRAM
🔅 Python or JavaScript - Which One Should YOU Learn?
👍348🤯3🔥2
🔅 Learning ArcGIS Python Scripting

🌐 Author: Jennifer Harrison
🔰 Level: Intermediate

Duration: 3h 39m

🌀 Learn how to automate tasks in ArcGIS using Python scripting. Find out how to manipulate maps, execute commands, and read and write files with custom Python scripts.


📗 Topics: ArcGIS Pro, Scripting, Python

📤 Join Learn Python for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
👍106🔥2
Learning ArcGIS Python Scripting.zip
414.7 MB
📱Learn Python
📱Learning ArcGIS Python Scripting
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🥰5🔥1
⌨️ Convert an Image to Grayscale with Python

Transform your images to grayscale using Python and the PIL library!


First, install the necessary module:
pip install pillow


Then, use this script:
from PIL import Image

# https://t.me/LearnPython3

in_img = 'input.jpg'
out_img = 'grayscale.jpg'

# Open the image
with Image.open(in_img) as img:
# Convert the image to grayscale
grayscale_img = img.convert('L')
# Save the grayscale image
grayscale_img.save(out_img)



Easily convert images to grayscale for a classic look or further image processing!

📱 Join us for more Python tips: @LearnPython3
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6425🥰6👏3
⌨️ Remove the Background of an Image Using Python

# pip install rembg pillow

from rembg import remove
from PIL import Image

input_path = "in.png"
output_path = "out.png"

input = Image.open(input_path)
output = remove(input)
output.save(output_path)


📱 Join us for more Python tips: @LearnPython3
Please open Telegram to view this post
VIEW IN TELEGRAM
71👍43😁14🔥6
🔅 Using Python for Automation (2019)

🌐 Author: Madecraft
🔰 Level: Advanced

Duration: 56m

🌀 Learn how to automate repetitive tasks using Python.


📗 Topics: Process Automation, Python

📤 Join Learn Python for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
👍17🔥1🥰1👏1
Using Python for Automation.zip
134.6 MB
📱Learn Python
📱Using Python for Automation (2019)
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5🔥41
Ex_Files_Python_Automation.zip
263.6 KB
📦 Exercise Files
👍11🔥31
⌨️ Simplify Function Calls with `functools.partial`

Simplify your function calls with functools.partial in Python!

from functools import partial

# https://t.me/LearnPython3

def multiply(x, y):
return x * y

# Create a new function where y is always 2
double = partial(multiply, y=2)

print(double(5)) # Output: 10


functools.partial allows you to fix a certain number of arguments of a function and generate a new function. This can make your code cleaner and more modular!

📱 Join @LearnPython3 for more Python tips
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3713🔥5🥰1
🔅 Advanced NLP with Python for Machine Learning (2020)

🌐 Author: Derek Jedamski
🔰 Level: Advanced

Duration: 2h 9m

🌀 Build upon your foundational knowledge of natural language processing (NLP) by exploring more complex topics such as word2vec, doc2vec, and recurrent neural networks.

📗 Topics: Natural Language Processing, Machine Learning, Python

📤 Join Learn Python for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
👍233🔥2👏1
Advanced NLP with Python for Machine Learning.zip
299.7 MB
📱Learn Python
📱Advanced NLP with Python for Machine Learning (2020)
Please open Telegram to view this post
VIEW IN TELEGRAM
👍122
Ex_Files_Adv_NLP_Python_ML.zip
908.1 KB
📦 Exercise Files
👍19🔥3
⌨️ 📺 Downloading a YouTube Playlist using Python
Please open Telegram to view this post
VIEW IN TELEGRAM
👍9540🔥11🥰11
Extract MP3 from MP4 Video with FFmpeg in Python 🎵

Easily extract audio from a video file using FFmpeg with Python!


First, install the necessary module:
pip install ffmpeg-python


Then, use this script:
import ffmpeg

# https://t.me/LearnPython3

input_file = 'input.mp4'
output_file = 'output.mp3'

# Extract audio from the video
ffmpeg.input(input_file).output(output_file, format='mp3').run()

print('Audio extracted successfully!')


With ffmpeg-python, you can extract high-quality audio from your video files effortlessly.

📱 Join @LearnPython3 for more Python tips
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5713🔥10👎5