Skip to main content

Binary to Decimal and Decimal to Binary Convertor in PYTHON

Binary to Decimal Convertor 
Decimal to Binary Convertor in PYTHON








John Veer
Basic Python Projects
Contact mail id - john.veer.utube@gmail.com
Thanks for reading

www.basicpythonprogramme.blogspot.com
www.basicpythonprojects.blosgpot.com 


Comments

Popular posts from this blog

Stone-Paper-Scissor in PYTHON

import random import time mylist = [ 1 , 2 , 3 ] print ( "Welcome to the Stone-Paper-Scissor game." ) print ( " \n Here are some of the rules" ) print ( "1.) There will be five round. The one whose score is more will be declared as winner." ) print ( "1.) For Stone, simply press 1." ) print ( "2.) For Paper, simply press 2." ) print ( "3.) For Scissor, simply press 3." ) print ( " \n Now, Lets go!" ) i = 0 j = 0 k = 1 for k in range ( 1 , 6 ):     print ( " \n ROUND " , k )     y = int ( input ( " \n Enter your choice as 1, 2 and 3 as instructed above: " ))     m = random . choice ( mylist )     if y == 1 :         if m == 1 :             print ( " \n Tie" )         elif m == 2 :             print ( " \n Computer chose paper, so you lose. Try again." )             j = j + 1       ...

Password Generator in PYTHON

Password Generator in Python:- import string import random import time s1 = string.ascii_lowercase s2 = string.ascii_uppercase s3 = string.digits s4 = string.punctuation password_length = input("Enter the length of password you want = ") password_length = int(password_length) password_list = [] a = input("Do you want lowercase letters in your password? (y/n): ") if a is "y": password_list.extend(s1) else: pass b = input("Do you want uppercase letters in your password? (y/n): ") if b is "y": password_list.extend(s2) else: pass c = input("Do you want numbers in your password? (y/n):") if c is "y": password_list.extend(s3) else: pass d = input("Do you want punctuations in your password? (y/n): ") if d is "y": password_list.extend(s4) else: pass random.shuffle(password_list) print("Generating the strongest password...") time.sleep(3) print("\n...