[{"data":1,"prerenderedAt":1014},["ShallowReactive",2],{"doc-\u002Flearn\u002Fpython-modules-explained":3},{"id":4,"title":5,"body":6,"description":1007,"extension":1008,"meta":1009,"navigation":51,"path":1010,"seo":1011,"stem":1012,"__hash__":1013},"content\u002Flearn\u002Fpython-modules-explained.md","Python Modules Explained",{"type":7,"value":8,"toc":974},"minimark",[9,13,17,20,23,83,90,95,111,115,122,125,136,139,142,145,156,160,163,166,177,180,183,186,190,193,198,201,204,221,224,228,231,234,255,277,281,284,291,295,301,351,356,365,368,392,395,413,420,424,427,433,480,486,493,547,551,567,571,574,589,592,616,619,631,635,638,652,654,673,676,684,687,690,724,732,736,739,746,766,770,773,777,786,789,793,796,799,812,816,819,842,848,851,883,887,890,893,897,901,904,908,911,915,918,922,925,936,940,970],[10,11,5],"h1",{"id":12},"python-modules-explained",[14,15,16],"p",{},"A Python module is one of the main ways Python keeps code organized and reusable.",[14,18,19],{},"In simple terms, a module is usually a Python file that contains code such as variables, functions, or classes. You can then use that code in another Python file instead of writing it again.",[14,21,22],{},"This page explains what modules are, why they matter, and how beginners use them. It keeps the focus on the idea of modules, not the full details of import syntax or packages.",[24,25,30],"pre",{"className":26,"code":27,"language":28,"meta":29,"style":29},"language-python shiki shiki-themes material-theme-lighter github-light github-dark","import math\n\nprint(math.sqrt(25))\n","python","",[31,32,33,46,53],"code",{"__ignoreMap":29},[34,35,38,42],"span",{"class":36,"line":37},"line",1,[34,39,41],{"class":40},"sVHd0","import",[34,43,45],{"class":44},"su5hD"," math\n",[34,47,49],{"class":36,"line":48},2,[34,50,52],{"emptyLinePlaceholder":51},true,"\n",[34,54,56,60,64,68,71,74,76,80],{"class":36,"line":55},3,[34,57,59],{"class":58},"sptTA","print",[34,61,63],{"class":62},"sP7_E","(",[34,65,67],{"class":66},"slqww","math",[34,69,70],{"class":62},".",[34,72,73],{"class":66},"sqrt",[34,75,63],{"class":62},[34,77,79],{"class":78},"srdBf","25",[34,81,82],{"class":62},"))\n",[14,84,85,89],{},[86,87,88],"strong",{},"Quick example:"," a module is a Python file you can import to use code written elsewhere.",[91,92,94],"h2",{"id":93},"what-this-page-teaches","What this page teaches",[96,97,98,102,105,108],"ul",{},[99,100,101],"li",{},"What a module is in simple terms",[99,103,104],{},"How modules help organize code",[99,106,107],{},"The difference between your own modules and built-in modules",[99,109,110],{},"A beginner-level introduction to importing",[91,112,114],{"id":113},"what-is-a-python-module","What is a Python module?",[14,116,117,118,121],{},"A Python module is usually a single ",[31,119,120],{},".py"," file.",[14,123,124],{},"That file can contain:",[96,126,127,130,133],{},[99,128,129],{},"Variables",[99,131,132],{},"Functions",[99,134,135],{},"Classes",[14,137,138],{},"The main idea is simple: if you write useful code in one file, you can reuse it from another file.",[14,140,141],{},"For example, instead of writing the same function in many places, you can put it in one module and import it when needed.",[14,143,144],{},"Modules help you:",[96,146,147,150,153],{},[99,148,149],{},"Avoid repeating code",[99,151,152],{},"Keep related code together",[99,154,155],{},"Make programs easier to read",[91,157,159],{"id":158},"why-modules-are-useful","Why modules are useful",[14,161,162],{},"Modules are useful because they help you split code into smaller, clearer parts.",[14,164,165],{},"Instead of putting everything in one long file, you can organize code by topic. For example:",[96,167,168,171,174],{},[99,169,170],{},"One file for math helpers",[99,172,173],{},"One file for file handling",[99,175,176],{},"One file for user input",[14,178,179],{},"This makes larger programs easier to manage.",[14,181,182],{},"Modules also let you reuse code in multiple files. If you improve a function in one module, every file that imports it can use the updated version.",[14,184,185],{},"Another big benefit is that Python already includes many useful modules in its standard library. For example, you can use modules for math, JSON data, file paths, and system information without writing those tools yourself.",[91,187,189],{"id":188},"types-of-modules-beginners-should-know","Types of modules beginners should know",[14,191,192],{},"There are two main types of modules beginners should understand.",[194,195,197],"h3",{"id":196},"your-own-modules","Your own modules",[14,199,200],{},"These are Python files you create yourself.",[14,202,203],{},"Example:",[96,205,206,211,216],{},[99,207,208],{},[31,209,210],{},"helpers.py",[99,212,213],{},[31,214,215],{},"tools.py",[99,217,218],{},[31,219,220],{},"greetings.py",[14,222,223],{},"If a file contains Python code, it can often be used as a module.",[194,225,227],{"id":226},"built-in-and-standard-library-modules","Built-in and standard library modules",[14,229,230],{},"These are modules that come with Python.",[14,232,233],{},"Examples include:",[96,235,236,240,245,250],{},[99,237,238],{},[31,239,67],{},[99,241,242],{},[31,243,244],{},"json",[99,246,247],{},[31,248,249],{},"os",[99,251,252],{},[31,253,254],{},"sys",[14,256,257,258,263,264,263,268,272,273,70],{},"You can learn more from pages like the ",[259,260,262],"a",{"href":261},"\u002Fstandard-library\u002Fpython-math-module-overview\u002F","Python math module overview",", ",[259,265,267],{"href":266},"\u002Fstandard-library\u002Fpython-json-module-overview\u002F","Python json module overview",[259,269,271],{"href":270},"\u002Fstandard-library\u002Fpython-os-module-overview\u002F","Python os module overview",", and ",[259,274,276],{"href":275},"\u002Fstandard-library\u002Fpython-sys-module-overview\u002F","Python sys module overview",[194,278,280],{"id":279},"what-about-third-party-packages","What about third-party packages?",[14,282,283],{},"Third-party packages are code written by other people and installed separately.",[14,285,286,287,70],{},"They are different from a simple module, so this page does not cover them in depth. If you want the bigger picture, it also helps to understand ",[259,288,290],{"href":289},"\u002Fglossary\u002Fwhat-is-a-package-in-python\u002F","what a package is in Python",[91,292,294],{"id":293},"basic-example-of-using-a-module","Basic example of using a module",[14,296,297,298,300],{},"A common beginner example is the ",[31,299,67],{}," module.",[24,302,304],{"className":26,"code":303,"language":28,"meta":29,"style":29},"import math\n\nresult = math.sqrt(25)\nprint(result)\n",[31,305,306,312,316,339],{"__ignoreMap":29},[34,307,308,310],{"class":36,"line":37},[34,309,41],{"class":40},[34,311,45],{"class":44},[34,313,314],{"class":36,"line":48},[34,315,52],{"emptyLinePlaceholder":51},[34,317,318,321,325,328,330,332,334,336],{"class":36,"line":55},[34,319,320],{"class":44},"result ",[34,322,324],{"class":323},"smGrS","=",[34,326,327],{"class":44}," math",[34,329,70],{"class":62},[34,331,73],{"class":66},[34,333,63],{"class":62},[34,335,79],{"class":78},[34,337,338],{"class":62},")\n",[34,340,342,344,346,349],{"class":36,"line":341},4,[34,343,59],{"class":58},[34,345,63],{"class":62},[34,347,348],{"class":66},"result",[34,350,338],{"class":62},[14,352,353],{},[86,354,355],{},"Output:",[24,357,359],{"className":26,"code":358,"language":28,"meta":29,"style":29},"5.0\n",[31,360,361],{"__ignoreMap":29},[34,362,363],{"class":36,"line":37},[34,364,358],{"class":78},[14,366,367],{},"What is happening here:",[96,369,370,379,389],{},[99,371,372,375,376,378],{},[31,373,374],{},"import math"," makes the ",[31,377,67],{}," module available",[99,380,381,384,385,388],{},[31,382,383],{},"math.sqrt(25)"," uses the ",[31,386,387],{},"sqrt()"," function from that module",[99,390,391],{},"The dot means “use this item from that module”",[14,393,394],{},"This is one of the most common patterns in Python:",[24,396,398],{"className":26,"code":397,"language":28,"meta":29,"style":29},"module_name.function_name()\n",[31,399,400],{"__ignoreMap":29},[34,401,402,405,407,410],{"class":36,"line":37},[34,403,404],{"class":44},"module_name",[34,406,70],{"class":62},[34,408,409],{"class":66},"function_name",[34,411,412],{"class":62},"()\n",[14,414,415,416,70],{},"If you want to go deeper into import syntax later, read ",[259,417,419],{"href":418},"\u002Flearn\u002Fhow-import-works-in-python\u002F","How Import Works in Python",[91,421,423],{"id":422},"creating-your-own-module","Creating your own module",[14,425,426],{},"You can create your own module with just two files.",[194,428,430,431],{"id":429},"file-1-greetingspy","File 1: ",[31,432,220],{},[24,434,436],{"className":26,"code":435,"language":28,"meta":29,"style":29},"def say_hello(name):\n    return f\"Hello, {name}!\"\n",[31,437,438,457],{"__ignoreMap":29},[34,439,440,444,448,450,454],{"class":36,"line":37},[34,441,443],{"class":442},"sbsja","def",[34,445,447],{"class":446},"sGLFI"," say_hello",[34,449,63],{"class":62},[34,451,453],{"class":452},"sFwrP","name",[34,455,456],{"class":62},"):\n",[34,458,459,462,465,469,472,474,477],{"class":36,"line":48},[34,460,461],{"class":40},"    return",[34,463,464],{"class":442}," f",[34,466,468],{"class":467},"s_sjI","\"Hello, ",[34,470,471],{"class":78},"{",[34,473,453],{"class":44},[34,475,476],{"class":78},"}",[34,478,479],{"class":467},"!\"\n",[14,481,482,483,70],{},"This file is your module. It contains one function called ",[31,484,485],{},"say_hello",[194,487,489,490],{"id":488},"file-2-mainpy","File 2: ",[31,491,492],{},"main.py",[24,494,496],{"className":26,"code":495,"language":28,"meta":29,"style":29},"import greetings\n\nmessage = greetings.say_hello(\"Maya\")\nprint(message)\n",[31,497,498,505,509,536],{"__ignoreMap":29},[34,499,500,502],{"class":36,"line":37},[34,501,41],{"class":40},[34,503,504],{"class":44}," greetings\n",[34,506,507],{"class":36,"line":48},[34,508,52],{"emptyLinePlaceholder":51},[34,510,511,514,516,519,521,523,525,529,532,534],{"class":36,"line":55},[34,512,513],{"class":44},"message ",[34,515,324],{"class":323},[34,517,518],{"class":44}," greetings",[34,520,70],{"class":62},[34,522,485],{"class":66},[34,524,63],{"class":62},[34,526,528],{"class":527},"sjJ54","\"",[34,530,531],{"class":467},"Maya",[34,533,528],{"class":527},[34,535,338],{"class":62},[34,537,538,540,542,545],{"class":36,"line":341},[34,539,59],{"class":58},[34,541,63],{"class":62},[34,543,544],{"class":66},"message",[34,546,338],{"class":62},[14,548,549],{},[86,550,355],{},[24,552,554],{"className":26,"code":553,"language":28,"meta":29,"style":29},"Hello, Maya!\n",[31,555,556],{"__ignoreMap":29},[34,557,558,561,564],{"class":36,"line":37},[34,559,560],{"class":44},"Hello",[34,562,563],{"class":62},",",[34,565,566],{"class":44}," Maya!\n",[194,568,570],{"id":569},"how-this-works","How this works",[14,572,573],{},"For this simple example:",[96,575,576,579,584],{},[99,577,578],{},"Put both files in the same folder",[99,580,581,582],{},"Run ",[31,583,492],{},[99,585,586,587],{},"Python imports the code from ",[31,588,220],{},[14,590,591],{},"The key line is:",[24,593,595],{"className":26,"code":594,"language":28,"meta":29,"style":29},"greetings.say_hello(\"Maya\")\n",[31,596,597],{"__ignoreMap":29},[34,598,599,602,604,606,608,610,612,614],{"class":36,"line":37},[34,600,601],{"class":44},"greetings",[34,603,70],{"class":62},[34,605,485],{"class":66},[34,607,63],{"class":62},[34,609,528],{"class":527},[34,611,531],{"class":467},[34,613,528],{"class":527},[34,615,338],{"class":62},[14,617,618],{},"That means:",[96,620,621,626],{},[99,622,623,624],{},"Use the module named ",[31,625,601],{},[99,627,628,629],{},"Then use the function named ",[31,630,485],{},[91,632,634],{"id":633},"important-beginner-idea-module-name-dot-function-name","Important beginner idea: module name dot function name",[14,636,637],{},"A very important pattern in Python is:",[24,639,640],{"className":26,"code":397,"language":28,"meta":29,"style":29},[31,641,642],{"__ignoreMap":29},[34,643,644,646,648,650],{"class":36,"line":37},[34,645,404],{"class":44},[34,647,70],{"class":62},[34,649,409],{"class":66},[34,651,412],{"class":62},[14,653,203],{},[24,655,657],{"className":26,"code":656,"language":28,"meta":29,"style":29},"math.sqrt(25)\n",[31,658,659],{"__ignoreMap":29},[34,660,661,663,665,667,669,671],{"class":36,"line":37},[34,662,67],{"class":44},[34,664,70],{"class":62},[34,666,73],{"class":66},[34,668,63],{"class":62},[34,670,79],{"class":78},[34,672,338],{"class":62},[14,674,675],{},"The dot means:",[96,677,678,681],{},[99,679,680],{},"start with the module",[99,682,683],{},"then access something inside it",[14,685,686],{},"This is helpful because it keeps names clear.",[14,688,689],{},"For example, many modules could have a function with the same name. Using the module name helps avoid confusion.",[24,691,693],{"className":26,"code":692,"language":28,"meta":29,"style":29},"import math\n\nprint(math.sqrt(16))\n",[31,694,695,701,705],{"__ignoreMap":29},[34,696,697,699],{"class":36,"line":37},[34,698,41],{"class":40},[34,700,45],{"class":44},[34,702,703],{"class":36,"line":48},[34,704,52],{"emptyLinePlaceholder":51},[34,706,707,709,711,713,715,717,719,722],{"class":36,"line":55},[34,708,59],{"class":58},[34,710,63],{"class":62},[34,712,67],{"class":66},[34,714,70],{"class":62},[34,716,73],{"class":66},[34,718,63],{"class":62},[34,720,721],{"class":78},"16",[34,723,82],{"class":62},[14,725,726,727,729,730,300],{},"Here, Python knows you want the ",[31,728,387],{}," function from the ",[31,731,67],{},[91,733,735],{"id":734},"what-this-page-does-not-cover-in-depth","What this page does not cover in depth",[14,737,738],{},"This page focuses on the basic idea of modules.",[14,740,741,742,745],{},"It does ",[86,743,744],{},"not"," explain these topics in detail:",[96,747,748,753,759],{},[99,749,750,751],{},"Full import syntax, which belongs on ",[259,752,419],{"href":418},[99,754,755,756],{},"Packages, which are covered in ",[259,757,758],{"href":289},"What Is a Package in Python?",[99,760,761,762,765],{},"Installing third-party tools, which belongs on pages about ",[31,763,764],{},"pip"," and virtual environments",[91,767,769],{"id":768},"common-beginner-mistakes","Common beginner mistakes",[14,771,772],{},"Here are some common module-related mistakes.",[194,774,776],{"id":775},"naming-your-file-the-same-as-a-standard-module","Naming your file the same as a standard module",[14,778,779,780,783,784,300],{},"If you create a file named ",[31,781,782],{},"math.py",", it can conflict with Python’s real ",[31,785,67],{},[14,787,788],{},"That can cause confusing import problems.",[194,790,792],{"id":791},"forgetting-that-python-must-be-able-to-find-the-file","Forgetting that Python must be able to find the file",[14,794,795],{},"If your own module is in the wrong folder, Python may not find it.",[14,797,798],{},"In simple beginner examples, keep both files in the same folder.",[14,800,801,802,806,807,811],{},"If import fails, pages like ",[259,803,805],{"href":804},"\u002Ferrors\u002Fmodulenotfounderror-no-module-named-x-fix\u002F","ModuleNotFoundError: No module named X"," and ",[259,808,810],{"href":809},"\u002Ferrors\u002Fimporterror-no-module-named-x-fix\u002F","ImportError: No module named X"," can help.",[194,813,815],{"id":814},"trying-to-use-a-function-before-importing-the-module","Trying to use a function before importing the module",[14,817,818],{},"This will fail:",[24,820,822],{"className":26,"code":821,"language":28,"meta":29,"style":29},"print(math.sqrt(25))\n",[31,823,824],{"__ignoreMap":29},[34,825,826,828,830,832,834,836,838,840],{"class":36,"line":37},[34,827,59],{"class":58},[34,829,63],{"class":62},[34,831,67],{"class":66},[34,833,70],{"class":62},[34,835,73],{"class":66},[34,837,63],{"class":62},[34,839,79],{"class":78},[34,841,82],{"class":62},[14,843,844,845,847],{},"Because ",[31,846,67],{}," has not been imported yet.",[14,849,850],{},"You need:",[24,852,853],{"className":26,"code":27,"language":28,"meta":29,"style":29},[31,854,855,861,865],{"__ignoreMap":29},[34,856,857,859],{"class":36,"line":37},[34,858,41],{"class":40},[34,860,45],{"class":44},[34,862,863],{"class":36,"line":48},[34,864,52],{"emptyLinePlaceholder":51},[34,866,867,869,871,873,875,877,879,881],{"class":36,"line":55},[34,868,59],{"class":58},[34,870,63],{"class":62},[34,872,67],{"class":66},[34,874,70],{"class":62},[34,876,73],{"class":66},[34,878,63],{"class":62},[34,880,79],{"class":78},[34,882,82],{"class":62},[194,884,886],{"id":885},"confusing-modules-with-packages","Confusing modules with packages",[14,888,889],{},"A module is usually one file.",[14,891,892],{},"A package is a way to organize multiple modules together.",[91,894,896],{"id":895},"faq","FAQ",[194,898,900],{"id":899},"what-is-a-module-in-python","What is a module in Python?",[14,902,903],{},"A module is usually a Python file that contains code you can reuse in another Python file.",[194,905,907],{"id":906},"what-is-the-difference-between-a-module-and-a-package","What is the difference between a module and a package?",[14,909,910],{},"A module is usually one file. A package is a way to organize multiple modules together.",[194,912,914],{"id":913},"do-i-need-pip-to-use-modules","Do I need pip to use modules?",[14,916,917],{},"No. Many modules come with Python already, and you can also create your own modules.",[194,919,921],{"id":920},"why-does-import-fail-for-my-own-module","Why does import fail for my own module?",[14,923,924],{},"Common reasons are:",[96,926,927,930,933],{},[99,928,929],{},"The file is in the wrong folder",[99,931,932],{},"The name is wrong",[99,934,935],{},"The filename conflicts with another module",[91,937,939],{"id":938},"see-also","See also",[96,941,942,946,950,954,958,962,966],{},[99,943,944],{},[259,945,419],{"href":418},[99,947,948],{},[259,949,758],{"href":289},[99,951,952],{},[259,953,805],{"href":804},[99,955,956],{},[259,957,262],{"href":261},[99,959,960],{},[259,961,267],{"href":266},[99,963,964],{},[259,965,271],{"href":270},[99,967,968],{},[259,969,276],{"href":275},[971,972,973],"style",{},"html pre.shiki code .sVHd0, html code.shiki .sVHd0{--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#D73A49;--shiki-default-font-style:inherit;--shiki-dark:#F97583;--shiki-dark-font-style:inherit}html pre.shiki code .su5hD, html code.shiki .su5hD{--shiki-light:#90A4AE;--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .sptTA, html code.shiki .sptTA{--shiki-light:#6182B8;--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sP7_E, html code.shiki .sP7_E{--shiki-light:#39ADB5;--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .slqww, html code.shiki .slqww{--shiki-light:#6182B8;--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .srdBf, html code.shiki .srdBf{--shiki-light:#F76D47;--shiki-default:#005CC5;--shiki-dark:#79B8FF}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html pre.shiki code .smGrS, html code.shiki .smGrS{--shiki-light:#39ADB5;--shiki-default:#D73A49;--shiki-dark:#F97583}html pre.shiki code .sbsja, html code.shiki .sbsja{--shiki-light:#9C3EDA;--shiki-default:#D73A49;--shiki-dark:#F97583}html pre.shiki code .sGLFI, html code.shiki .sGLFI{--shiki-light:#6182B8;--shiki-default:#6F42C1;--shiki-dark:#B392F0}html pre.shiki code .sFwrP, html code.shiki .sFwrP{--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#24292E;--shiki-default-font-style:inherit;--shiki-dark:#E1E4E8;--shiki-dark-font-style:inherit}html pre.shiki code .s_sjI, html code.shiki .s_sjI{--shiki-light:#91B859;--shiki-default:#032F62;--shiki-dark:#9ECBFF}html pre.shiki code .sjJ54, html code.shiki .sjJ54{--shiki-light:#39ADB5;--shiki-default:#032F62;--shiki-dark:#9ECBFF}",{"title":29,"searchDepth":48,"depth":48,"links":975},[976,977,978,979,984,985,992,993,994,1000,1006],{"id":93,"depth":48,"text":94},{"id":113,"depth":48,"text":114},{"id":158,"depth":48,"text":159},{"id":188,"depth":48,"text":189,"children":980},[981,982,983],{"id":196,"depth":55,"text":197},{"id":226,"depth":55,"text":227},{"id":279,"depth":55,"text":280},{"id":293,"depth":48,"text":294},{"id":422,"depth":48,"text":423,"children":986},[987,989,991],{"id":429,"depth":55,"text":988},"File 1: greetings.py",{"id":488,"depth":55,"text":990},"File 2: main.py",{"id":569,"depth":55,"text":570},{"id":633,"depth":48,"text":634},{"id":734,"depth":48,"text":735},{"id":768,"depth":48,"text":769,"children":995},[996,997,998,999],{"id":775,"depth":55,"text":776},{"id":791,"depth":55,"text":792},{"id":814,"depth":55,"text":815},{"id":885,"depth":55,"text":886},{"id":895,"depth":48,"text":896,"children":1001},[1002,1003,1004,1005],{"id":899,"depth":55,"text":900},{"id":906,"depth":55,"text":907},{"id":913,"depth":55,"text":914},{"id":920,"depth":55,"text":921},{"id":938,"depth":48,"text":939},"Master python modules explained in our comprehensive Python beginner guide.","md",{},"\u002Flearn\u002Fpython-modules-explained",{"title":5,"description":1007},"learn\u002Fpython-modules-explained","349aA4w_kM-rTzqL9prtU-h7pRtcmUhTDdoBg8cAU6Q",1777585493310]