1 00:00:00,300 --> 00:00:11,330 The next topic is IED E which is integrated development environment an IED is according to which allows 2 00:00:11,330 --> 00:00:16,740 you to write test and debug your code in an easier way. 3 00:00:18,310 --> 00:00:27,190 Technically you can write your code in a notepad but your windows notepad say for example does not highlight 4 00:00:27,190 --> 00:00:28,480 your syntax. 5 00:00:28,480 --> 00:00:35,950 Say giving a color code to all the functions that you have defined in your program and it does not provide 6 00:00:35,950 --> 00:00:42,380 debugging tools and you cannot execute the program directly from notepad. 7 00:00:42,400 --> 00:00:49,610 Application so you would have to save the file and run the code from command prompt. 8 00:00:49,720 --> 00:00:53,550 And for this you need two different programs. 9 00:00:53,560 --> 00:01:02,260 Next we have the IDA in E which is the integrated development and learning environment provided with 10 00:01:02,410 --> 00:01:03,660 Python. 11 00:01:03,760 --> 00:01:12,160 It ideally allows to create read edit and execute your programs under the same roof without touching 12 00:01:12,160 --> 00:01:18,340 the command line using the ideally is not a requirement for using Python. 13 00:01:18,370 --> 00:01:23,230 There are many other ideas that can be used to write python programs. 14 00:01:23,290 --> 00:01:29,080 For example there is by chance then spider Komodo. 15 00:01:29,080 --> 00:01:40,380 Edit atom sublime text etc. The idea e is a combination of a text editor and the Python interpreter 16 00:01:41,320 --> 00:01:47,900 as we have just discussed that the IDC can be used to write and test your code. 17 00:01:48,220 --> 00:01:48,780 Yeah. 18 00:01:48,820 --> 00:01:58,210 I have given a print function to print text Hello war and then the IDC can also be used to do mathematical 19 00:01:58,210 --> 00:02:07,690 operations like additions subtractions and so on and in order to execute these statements we need an 20 00:02:07,750 --> 00:02:15,460 interpreter in case of the Python programming language we use the interpreter nada to translate the 21 00:02:15,460 --> 00:02:18,460 human readable code to machine code.