FLFelipe Lealinfelipelealol.com·Mar 31, 2023 · 1 min readClear screen with PythonThis is a very useful and simple approach on a clear screen using python. Acctually I am using this version Python 3.11.1, on Windows 10. pip install clear After install, this library go to python's prompt from clear import clear And finally run th...00
FLFelipe Lealinfelipelealol.com·Mar 30, 2023 · 1 min readConsuming Reddit APIThis is a simple way to consume the Reddit API, we are listing the most popular topics on Reddit from one specific subreddit Below is the code to achieve this: import requests subreddit = 'python' top_limit = 5 endpoint = f'https://www.reddit.com/r/{...00
FLFelipe Lealinfelipelealol.com·Mar 28, 2023 · 2 min readPython: Function range()If you are staring into Python's world, one of the first things that you will learn is about the function range. The function range returns a list of numbers, as a default element starting from 0 I typed some examples about this function: >>> for my_...00
FLFelipe Lealinfelipelealol.com·Feb 28, 2023 · 1 min readPython journeyRecently I started my journey with Python, I have worked as an Oracle DBA for about 12 years and I like the way that the code is built in Python, I passed through other languages (learning) javascript for example. I will share the evolution of my pyt...01