Skip to main content

Password Generator in PYTHON

Password Generator in Python:-



Hope this help you!



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

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

Comments

Popular posts from this blog

Binary to Decimal and Decimal to Binary Convertor in PYTHON

Binary to Decimal Convertor  Decimal to Binary Convertor in PYTHON import math while True: decision = input("\n \nPress 1 for decimal to binary conversion\nPress 2 for binary to decimal conversion\n") if(decision=="1"): print("Instructions") print("1.) Only positive numbers") print("2.) Number should not be in fraction") print("3.) It should not contains alphabets or other special characters") n = input("Enter the number: ") n = int(n) mylist = [] if n John Veer Basic Python Projects Contact mail id - john.veer.utube@gmail.com Thanks for reading www.basicpythonprogramme.blogspot.com www.basicpythonprojects.blosgpot.com 

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