Skip to main content

Disclaimer

  

Disclaimer for John Veer

If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at john.veer.utube@gmail.com. Our Disclaimer was generated with the help of the Disclaimer Generator.

Disclaimers for Basic Python Projects

All the information on this website - www.basicpythonprojects.blogspot.com - is published in good faith and for general information purpose only. Basic Python Projects does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (Basic Python Projects), is strictly at your own risk. Basic Python Projects will not be liable for any losses and/or damages in connection with the use of our website.

From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.

Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.

Consent

By using our website, you hereby consent to our disclaimer and agree to its terms.

Update

Should we update, amend or make any changes to this document, those changes will be prominently posted here.

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

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