Python Get input of 3 marks and show percent with pass and fail - problem 2/chapter 6 MY WAY: a = int(input( "enter the marks of chemistry: " )) b = int(input( "enter the marks of physics: "… May 05, 2021 0 Comments
Python Chapter 1 Practice set : 5 questions 1. to print multiple lines use ''' and not " 3. playsound module - external module install this module can… April 29, 2021 0 Comments
Python What are comments in Python? Comments Comments in Python are the typings by the programmer, which he doesn't want to be considered as a code. These c… April 28, 2021 0 Comments
Python How to use python as a calculator? We can use python as a calculator Go to Terminal and type "python" and press enter. This opens REPL, which can be… April 28, 2021 0 Comments
Python What are modules in Python? Modules The module is a file containing code written by somebody else (usually) which can be imported and used in our progra… April 28, 2021 0 Comments
Python Introduction to Python: First program in python What is Programming? programming is a language that a human can use to give commands to a computer . What is Python? Python… April 28, 2021 0 Comments