Saturday, 16 April 2022

Day 15 : Violin Plot using Python

 #!/usr/bin/env python# coding: utf-8# In[ ]:pip install seaborn# # Violin Plot using Python# In[9]:import seaborn as snsimport matplotlib.pyplot as pltdata = sns.load_dataset("tips")plt.figure(figsize=(10, 4))sns.violinplot(x=data["total_bill"])plt.show()#clcoding.com#...

Day 14 : Text wrapping in Python

 #!/usr/bin/env python# coding: utf-8# # Text wrapping in Python# In[17]:import textwrapvalue = """This function wraps the input paragraph such that each linein the paragraph is at most width characters long. The wrap methodreturns a list...

Day 13 : Country info in Python

#!/usr/bin/env python# coding: utf-8# In[ ]:pip install countryinfo# # Country info in Python# In[1]:from countryinfo import CountryInfo#user input for Country Namecount=input("Enter your country : ") country = CountryInfo(count)print("Capital...

Saturday, 9 April 2022

Day 11 : Python Program to Generate Password

#!/usr/bin/env python# coding: utf-8# # Python Program to Generate Password# In[10]:#import random module import random#User input for password length passlen = int(input("Enter the length of password : "))#storing letters, numbers...

Day 10 : Dice Roll Simulator in Python

#!/usr/bin/env python# coding: utf-8# # Dice Roll Simulator# In[ ]:#importing module for random number generationimport random#range of the values of a dicemin_val = 1max_val = 6#to loop the rolling through user inputroll_again = "yes"#loopwhile...

Day 9 : BMI Calculator with Python

 #!/usr/bin/env python# coding: utf-8# # BMI Calculator with Python# In[7]:Height=float(input("Enter your height in centimeters: "))Weight=float(input("Enter your Weight in Kg: "))Height = Height/100BMI=Weight/(Height*Height)print("your...

Sunday, 3 April 2022

Day 6 : Text to Handwriting using Python

#!/usr/bin/env python# coding: utf-8# # Text to Handwriting using Python# In[ ]:import pywhatkit as kitimport cv2Handwritten=input("Enter your text to convert in Handwriting : ")kit.text_to_handwriting(Handwritten, save_to="pythoncoding.png")img...

Day 1: Line continuation characters in Python

#!/usr/bin/env python# coding: utf-8# # Day 1 :  Line continuation characters in Python# In[28]:print("I know Python and its very easy for everyone")# In[29]:print("I know Python andits very easy for everyone")#clcoding.com# In[30]:#In Python, a backslash ( \ ) is a continuation character.print("I know Python and its very easy for everyone")#clcoding.com#...

Popular Posts

Categories

100 Python Programs for Beginner (106) AI (41) Android (24) AngularJS (1) Api (2) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (200) C (77) C# (12) C++ (83) Course (67) Coursera (252) 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 (86) Meta (22) MICHIGAN (5) microsoft (4) Nvidia (4) Pandas (4) PHP (20) Projects (29) pyth (1) Python (1065) Python Coding Challenge (463) Python Quiz (135) 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)