1 00:00:00,000 --> 00:00:02,664 You have learned about different data 2 00:00:02,670 --> 00:00:05,130 types that you can use in Python, for 3 00:00:05,130 --> 00:00:07,020 example, you learned that you can have 4 00:00:07,080 --> 00:00:09,660 strings, and you can have lists, and 5 00:00:09,660 --> 00:00:13,350 numbers, and so on, and we stored these 6 00:00:13,350 --> 00:00:15,900 data types in variables. So a variable 7 00:00:15,900 --> 00:00:19,440 was associated to a string, for example. 8 00:00:20,010 --> 00:00:21,720 The problem with this is that you are 9 00:00:21,720 --> 00:00:25,710 storing data inside your Python program. 10 00:00:26,435 --> 00:00:29,045 If you want to really, really store in 11 00:00:29,070 --> 00:00:31,020 data, for example, you want to 12 00:00:31,020 --> 00:00:34,470 store weather forecasts, you don't want 13 00:00:34,470 --> 00:00:37,830 to write those forecast 14 00:00:37,830 --> 00:00:41,460 values in strings, or in numbers, in 15 00:00:41,460 --> 00:00:45,390 your '.py' script. What you want to do 16 00:00:45,390 --> 00:00:47,820 instead is you want to have those data 17 00:00:47,850 --> 00:00:50,280 in external files, for example, text 18 00:00:50,280 --> 00:00:53,640 files, or CSV files, or later on, you 19 00:00:53,640 --> 00:00:55,680 will learn about databases, how to store 20 00:00:55,680 --> 00:00:58,470 data in databases, and get those data 21 00:00:58,890 --> 00:01:01,590 via Python and process them in Python. 22 00:01:02,580 --> 00:01:04,380 But in this section, you will learn 23 00:01:04,380 --> 00:01:07,020 about how to store data in text files 24 00:01:07,045 --> 00:01:10,345 and how to get data from text files, 25 00:01:10,470 --> 00:01:12,450 how to create text files with Python, 26 00:01:12,450 --> 00:01:16,590 how to read the data from text files, and 27 00:01:16,620 --> 00:01:19,440 process them with Python. So that is a 28 00:01:19,440 --> 00:01:22,320 very, very crucial concept of 29 00:01:22,320 --> 00:01:24,990 programming, and so that's an advanced 30 00:01:24,990 --> 00:01:27,270 concept and you learn that in this 31 00:01:27,301 --> 00:01:30,866 section. So have fun, and I'll see you in the next video.