Showing posts with label Python. Show all posts
Showing posts with label Python. Show all posts

Saturday, 11 May 2024

Sunday, 5 May 2024

Donut Charts using Python

 Code:import matplotlib.pyplot as plt# Data to plotlabels = ['A', 'B', 'C', 'D']sizes = [15, 30, 45, 10]# Plotplt.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=140)# Draw a circle at the center of pie to make it look like a donutcentre_circle...

Saturday, 27 April 2024

Why Should You Learn Python Programming?

 Python programming language has been gaining immense popularity in recent years, and for good reason. Whether you're a beginner looking to dive into the world of coding or an experienced developer seeking to expand your skill set, learning...

Friday, 26 April 2024

Book Giveaway ! One Book one Person

 Software Architecture Patterns for Serverless Systems - Second Edition: Architecting for innovation with event-driven microservices and micro frontendsModern C++ Programming Cookbook - Third Edition: Master modern C++ including the latest...

Wednesday, 24 April 2024

Calculate Integration using Python

 # Define an exponential functionh = sp.exp(x)# Compute the indefinite integralH = sp.integrate(h, x)print("∫exp(x) dx =", H)#clcoding.comimport sympy as sp# Define the variable and functionx = sp.Symbol('x')f = x**2 + 3*x + 2# Compute...

Tuesday, 23 April 2024

Sunday, 21 April 2024

Tuesday, 16 April 2024

Monday, 15 April 2024

Automatically Generate Image CAPTCHAs with Python for Enhanced Security

 Code:from captcha.image import ImageCaptcha import random# Specify the image sizeimage = ImageCaptcha(width=450, height=100)# Generate random captcha textdef generate_random_captcha_text(length=6):    characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' ...

Saturday, 13 April 2024

Python library to filter and censor offensive language

 from better_profanity import profanitytext = "What the hell is going on?"censored_text = profanity.censor(text)print(censored_text)  #clcoding.comExplanation: The line from better_profanity import profanity imports the...

Popular Posts

Categories

100 Python Programs for Beginner (98) AI (39) Android (24) AngularJS (1) Api (2) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (197) C (77) C# (12) C++ (83) Course (67) Coursera (251) Cybersecurity (25) Data Analysis (3) Data Analytics (3) data management (11) Data Science (149) Data Strucures (8) Deep Learning (21) Django (16) Downloads (3) edx (2) Engineering (14) Euron (29) Events (6) Excel (13) Factorial (1) Finance (6) flask (3) flutter (1) FPL (17) Generative AI (11) Google (36) Hadoop (3) HTML Quiz (1) HTML&CSS (47) IBM (30) IoT (1) IS (25) Java (93) Java quiz (1) Leet Code (4) Machine Learning (85) Meta (22) MICHIGAN (5) microsoft (4) Nvidia (4) Pandas (4) PHP (20) Projects (29) pyth (1) Python (1048) Python Coding Challenge (456) Python Quiz (122) Python Tips (5) Questions (2) R (70) React (6) Scripting (3) security (3) Selenium Webdriver (4) Software (17) SQL (42) UX Research (1) web application (8) Web development (4) web scraping (2)

Followers

Python Coding for Kids ( Free Demo for Everyone)