Python for Engineers
Solve Problems by Coding Solutions - A Complete solution for python programming
Blog Pages
(Move to ...)
Code
Top 10 Blogs
NumPy Tutorials
Distributions
Self Learning
IDE
About
▼
Carbon Footprint of Computing Resources - A Thought
›
The carbon footprint of the computing device also taken into consideration while estimation of cost. (Energy) Carbon footprint of the har...
Raw Materials for a Program - A Thought
›
Every creation in the universe requires energy and raw materials. T he product is a hardware or software components, we look into software c...
Tic-Tac-Toe game in Python
›
from tkinter import * import numpy as np size_of_board = 600 symbol_size = (size_of_board / 3 - size_of_board / 8) / 2 symbol_thickness = 30...
Program for time Comparsion difference between Python Lists and Numpy Arrays
›
Creation time for adding two python list is the order of 500 compared to the adding two numpy array. Time metric in seconds Creation time...
Python program to find distance measure - Hamming ,Euclidean , Manhattan, Minkowski
›
# Calculating distance between bit strings # Hamming Distance def hamming_distance(a, b): return sum(abs(e1 - e2) for e1, e2 in zip(a, b))...
‹
›
Home
View web version