Posts

Showing posts from July, 2020

My first game. I've prepared a game using scratch. Its similar to the most popular game from 90's(Flappy Bird).

Game: Flappy Bird This is a small short game. Here is shown up a small clip of BTS of the game and small noobish gameplay of the game. Hope you enjoy it😊. link to the game:  https://scratch.mit.edu/projects/411312095 ........ keep chillin' ........ covid-19 time creative quarrantine

Made a faulty calculator!!!! Using Pycharm. It shows wrong ans for some targeted calculation [41*22, 62+4,62+4], whereas performs correct calculation for other all actions.

Here is my first python code. Feel free to use this code anywhere. #This is the faulty calculator num1 = int ( input ( "Please input first number: " )) num2 = int ( input ( "Please input second number: " )) ope1 = input ( "What would you like to perform: " " + " " - " " / " " * " " % :" ) if ope1 == "+" : ans = num1+num2 elif ope1 == "-" : ans = num1-num2 elif ope1 == "/" : ans = num1/num2 elif ope1 == "*" : ans = num1*num2 if ans == 41 * 22 : print ( "Your calculation is 99." ) elif ans == 62 + 4 : print ( "Your calculation is 74." ) elif ans == 50 - 43 : print ( "Your calculation is 2." ) else : print ( "Your calculation is:" , ans) codeded by : BKlp. instagram : bee_kalpa_