Python for Engineers

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

Blog Pages

▼

Fire detection

›
import cv2 import numpy as np import matplotlib.pyplot as plt live_camera = cv2.VideoCapture(0) while(live_camera.isOpened()):     ret, fram...

Notepad

›
import tkinter import os from tkinter import * from tkinter.messagebox import * from tkinter.filedialog import * class Notepad: __root = T...

21 Game

›
def nearestMultipleTo4(num): if num >= 4: near = num + (4 - (num % 4)) else: near = 4 return near def lose1(): print (...

Screen Rotation Application

›
from tkinter import * import rotatescreen def Screen_rotate(temp): screen = rotatescreen.get_primary_display() if temp == "up"...

Application to Search Installed Application

›
from tkinter import * import winapps def app(): for item in winapps.search_installed(e.get()): name.set(item.name) version.set(item....
‹
›
Home
View web version
Powered by Blogger.