SAFIA KHATOONsafiakhatoon.hashnode.dev·Dec 14, 2024Python Day 2: Modules and Pip By Safia KhatoonWhat is Modules ? Modules are used to borrow someone else’s code . There are 2 Types of module : Built-in Modules: Built-in modules are modules that do not need to be installed externally; they are already included with Python. example : math, rand...DiscussPython Modules and Packages
Soumyo Deep Guptad33p0st.hashnode.dev·Nov 17, 2024Blockchain Data Structures in Python: Creation and Management TipsWith the rise in blockchain technology, different fields of studies are experimenting vigorously to see how blockchain fits into their own environment. The wait is over!! This python library allows creating secure blockchains with system level speed ...DiscussCustom Made Librariesmodstore
Amanda Ene Adoyilonercode.hashnode.dev·Jul 6, 2024Python's Built In Modules: The OS ModuleWelcome to another bitesize episode of the built-in Python module series. The last time we had a look at the sys module and now we'd be looking at something somewhat similar known as the operating system (os) module. A major difference between the tw...Discuss·1 likePython
Amanda Ene Adoyilonercode.hashnode.dev·Jun 14, 2024Python's Built In Modules: The Sys ModuleAloha and karibu to another post in the Python built-in modules series. We would be looking at the sys module today. This would be a brief but informative one, so disfrutar! The sys module is an awesome way to work with the Python runtime environment...Discuss·1 likeProgramming Blogs
Amanda Ene Adoyilonercode.hashnode.dev·Jun 5, 2024Python’s Modules: Creating your Own ModuleWe left off on my last post talking some stuff about creating your own module. That’s worth putting our built-in modules series on hold so you could learn this important feat in preparation for the many modules you may soon write. It’s quite easy rea...Discuss·30 readsPython
Amanda Ene Adoyilonercode.hashnode.dev·May 27, 2024Python’s Built In Modules: The Math ModuleI was working on my personal project this week when I stopped to reflect on the number of Python Modules there are. I mean, they are quite a lot of them and there’s actually a difference between modules and libraries that I’ve been ignoring for so lo...Discuss·1 like·40 readspython beginner
Victory Amadilavictoire.hashnode.dev·Apr 26, 2024Could This Be The Weirdest Python Library Ever?I got introduced to the world of computer programming with Python (I am a staunch member of the ‘HTML is not a programming language’ camp), and after I got wowed by the basics and stuff, I went to get the award winning Head First Python book for furt...Discuss·4 likesPython
John Mainpynerds.hashnode.dev·Apr 7, 2024name_ variable in PythonIn this article we will explore the __name__ variable, its purpose and how we can use it to tell where a module or script is being executed from. You may have come along the __name__ variable when going through some code, scripts or modules. The fol...DiscussPython 3
Rajesh Kumar Dasblogs.hyperoot.dev·Mar 20, 2024How to execute python module?Execute python script in terminal A basic python looks something like the following. # file: sample.py print("Hello World!!!") pythonsample.py is a command that tells the Python interpreter to execute a Python script named sample.py. Here's what eac...DiscussPython
ESlavin1808eslavin.hashnode.dev·Oct 1, 20235 Python Modules and Packages5.1 Importing Modules In Python, modules are files that contain Python code, which can be used to define functions, classes, and variables. These modules can be imported into other Python programs to reuse code and access the functionality provided b...DiscussPython