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
▼
Google Drive Logo Using Turtle
›
import turtle as t t.hideturtle() t.Screen().bgcolor("Black") t.pencolor("white") t.pensize(0) t.begin_fill() t.fillcolo...
Check whether a string starts and ends with the same character or not (using Regular Expression)
›
import re regex = r'^[a-z]$|^([a-z]).*\1$' def check(string): if(re.search(regex, string)): print("Valid") else: ...
Javascript logo using turtle
›
import turtle t=turtle.Turtle() t.penup() t.goto(-20,-70) t.color("#F0DB4F","#F0DB4F") t.begin_fill() t.pendown() t.left...
Replace multiple words
›
test_str = 'Python for engineers,The complete solution for python programs' print("The original string is : " + str(test_s...
Program for Counting Sort
›
def countSort(arr): output = [0 for i in range(256)] count = [0 for i in range(256)] ans = ["" for _ in arr] for i in arr:...
‹
›
Home
View web version