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
▼
Olympic Symbol
›
import turtle tr = turtle.Turtle() tr.pensize(5) tr.color("blue") tr.penup() tr.goto(-110, -25) tr.pendown() tr.circle(45) tr.colo...
Page Switching
›
import tkinter as tk from tkinter import ttk LARGEFONT =("Verdana", 35) class switchApp(tk.Tk): def __init__(self, *args, **kw...
EMI calculator
›
from tkinter import * class EmiCalculator: def __init__(self): window = Tk() window.title("Loan Calculator") ...
Bubble sort visualizer
›
import pygame pygame.init() win = pygame.display.set_mode((500, 400)) pygame.display.set_caption("Bubble sort") x = 40 y = 40 widt...
Age Calculator
›
from tkinter import * from tkinter import messagebox def clearAll() : dayField.delete(0, END) monthField.delete(0, END) yearFiel...
‹
›
Home
View web version