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

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...

Your Age in Seconds, Minutes, hours and in days program in PYTHON

  import datetime print ( " \n Instructions:" ) print ( " \n 1.) Put the date correctly." ) pyear = datetime . datetime . today (). strftime ( '%Y' ) pyear = int ( pyear ) pmonth = datetime . datetime . today (). strftime ( '%m' ) pmonth = int ( pmonth ) pdate = datetime . datetime . today (). strftime ( ' %d ' ) pdate = int ( pdate ) phour = datetime . datetime . today (). strftime ( '%H' ) phour = int ( phour ) pmin = datetime . datetime . today (). strftime ( '%M' ) pmin   = int ( pmin ) psec = datetime . datetime . today (). strftime ( '%S' ) psec = int ( psec ) byear = int ( input ( "Birth year (For eg. 2005, 1976 etc): " )) i = 1 while i > 0 :     if byear >= pyear :         print ( " \n Year is invalid.." )         byear = int ( input ( "Birth year (For eg. 2005, 1976 etc): " ))         i = i + 1     else :         break bmon...