lest just create a basic bot operation in python
hers the code ....................................python code ...................................................................... name=(input("whats your name :")) print("hello",name) ans=(input("have you thought of black hole today: say yess or no!")) print("iam so glad you said {}, I was thinking the same thing".format(ans)) ........................................................................................................................ output: whats your name :animesh hello animesh have you thought of black hole today: say yess or no!yess! iam so glad you said yess!, I was thinking the same thing hears another: ...........................................python code .......................................................................... #print("how intillegenat are you in the range of 0-10?:") x=(int(input("how intillegenat are you in the range of 0-10?:"))) if (x>=5 and x<=10): print("you are in...
Comments
Post a Comment