Ads block

Showing posts with label python projects for resume. Show all posts
Showing posts with label python projects for resume. Show all posts

Python Drunken Man Game


Python Drunken Man Game
Video Link:-  Source Code:-  import random size = 60   x = input ( "Enter a letter to begin :- " ) position = size / 2 while ( True ):     prin…
Read more »

Password Generator In Python


Password Generator In Python
Video :-  Code :- import string import random from cryptography.fernet import Fernet def gen_random_pw ():     global final_pw     characters = list (st…
Read more »

Casino Game in Python


Casino Game in Python
Making the Main Screen (PART 1)  Video Link :-  from tkinter import * import pygame import time import random root = Tk () root . title ( "scientif…
Read more »