Skip to main content

Posts

Showing posts from November, 2021

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

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