Python for Engineers

Solve Problems by Coding Solutions - A Complete solution for python programming

Blog Pages

▼

BMI Calculator Using Python

›
height = float(input("Enter height in foot")) height_in_meter = height*12/39.37 weight = int(input("Enter weight in kg")...

Python script that takes the city name and returns the weather information of that city using web scraping

›
from bs4 import BeautifulSoup import requests headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/53...

Create Graph Using Python

›
import matplotlib.pyplot as plt import numpy as np xpoints = np.array([1,8]) ypoints = np.array([3,10]) plt.plot(xpoints,ypoints) plt.show()

Drawing Corona Virus Using Turtle

›
from turtle import * color('green') bgcolor('black') speed(10) hideturtle() b = 0 while b < 200: right( b) forward(b ...

Program to draw pie chart in python

›
import matplotlib.pyplot as plt x=[30,30,20,20] labeks=["Python","Java","C","C++"] plt.pie(x,labels=...
‹
›
Home
View web version
Powered by Blogger.