Nepal , officially the Federal Democratic Republic of Nepal,[20] is a sovereign country in South Asia. It is mainly in the Himalayas, but also includes parts of the Indo-Gangetic Plain. It is the 49th largest country by population and 93rd largest country by area. It is landlocked, and borders China in the north and IndiaContinue reading “Nepal🇳🇵”
Author Archives: tulasa pithakote
Code for a simple calculator
First of all you will need a Integrated Development Environment [IDE].I will be using pycharm you can use any IDE… Code for a simple calculator num1= input(“Enter Your First Number”) num2= input(“Enter Your Second Number”) Result = float(num1) + float(num2) Result = float(num1) – float(num2) Result = float(num1) / float(num2) Result = float(num1) * float(num2)Continue reading “Code for a simple calculator”