Python-recap
Good Morning Boys!! Today, we must begin the revision of Python and gradually move ahead with the concepts of Python Programing for Class-10. Before I show you any example to recall Python programming, let's recall some steps to open the IDLE and work on it. Learning Outcomes By the end of this blog you will be able to: Recall the use of IDLE Recapitulate some basic programs Implement the knowledge of Python in making own program. Writing a Python program The following picture will remind you about the steps to open IDLE: The Python IDLE graphic window (Script Mode) Typing and executing one command at time cannot be used for make big program. A programmer is always in need of a text editor in which she/he can easily type the whole code and then execute it after compiling. This is made possible because of Python IDLE graphic window . IDLE is a default editor that comes with Python. After opening it ...