Python for Engineers

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

Blog Pages

▼

Calculation of Gross and Net Calorific Value

›
#  Credits   Name: ANUPRIYA R #  HCV - Higher and Gross Calorific Value #  LCV -  Lower or Net Calorific Value # Compatible with python...

Chemistry Problem Solver

›
# Credits  Name: Abhijith P   Email: abhijithp64@gmail.com # Compatible with python 3.x.x  # Program for problems related to chemistry # ...

Character Classification based on ASCII value

›
SingleCharacter = input("Enter a character:",) Character = ord(SingleCharacter) # ord --> Convert a string to ASCII value if C...

To find the distance between two points, given by the coordinates (x1, y1) and (x2, y2) by Pythagorean theorem using functions

›
def pt(x1,y1,x2,y2):       x=x2-x1       y=y2-y1       x=x**2       y=y**2       d=(x+y)**(0.5)       return d       x1=int(raw_inpu...

Database version retrieving using Python

›
#username of MySQL: root #Password: root #Hostname: localhost # Database Name in MySQL: test import mysql.connector x = mysql.connector.co...
‹
›
Home
View web version
Powered by Blogger.