TToyinOintoyino.hashnode.dev·Nov 29, 2021 · 4 min readPython ArgumentsArguments are values to be passed into a function when the function is being called. It is commonly used interchangeably with a parameter which is a placeholder specified during the definition of a function. Generally, functions are used to bundle a ...00
TToyinOintoyino.hashnode.dev·Feb 28, 2021 · 5 min readVirtual Environments: Python & AnacondaVirtual Environment A virtual environment is an isolated environment that helps to keep dependencies required by different projects separate. As a python developer virtual environments are very important. Why do we use virtual environments By default...00
TToyinOintoyino.hashnode.dev·Feb 12, 2021 · 11 min readLinux Commands: The Basics IWhen you start your coding journey it is essential to learn how to interact with the Operating System (OS) of your computer. If you are an Ubuntu user or Mac OS it means you're in luck, your OS is Unix/Linux which is quite similar because Linux is an...01W
TToyinOintoyino.hashnode.dev·Feb 3, 2021 · 3 min readWeb scraping: Parsing TablesWhen working on projects, some times I bet you wonder where the raw data comes from. They could be gotten through various means, data entry, web scraping and APIs etc. In this post, I'll be explaining how to scrape tables from websites with simple b...01D
TToyinOintoyino.hashnode.dev·Jan 28, 2021 · 5 min readError Handling in PythonError handling refers to the anticipation, detection, and resolution of programming, application, and communications errors. Specialized programs, called error handlers, are available for some applications. The best programs of this type forestall er...00