Author: tinyytopic.com
-
How to prepare Tomato rice?
Tomato rice is a popular and flavorful South Indian dish made from cooked rice, tomatoes, and a blend of aromatic spices. It is a one-pot meal that is easy to prepare and can be served as a main course or as a side dish. This is a quick meal since the cooking time is only…
-
How to choose Sovereign Gold Bond (SGB) Vs Gold ETF
Sovereign Gold Bond (SGB) and Gold ETFs such as Goldbees are two popular investment options for those who want to invest in gold. This article will guide you in choosing which one to choose for investment since both have their own advantages and disadvantages. Here are some key differences between the two: In conclusion, both…
-
Find a string within HTML text
Ready-to-use Python function to find a string in an HTML text: Write your main code as a sample below, The output of the code is, This Python function find_string_for_webscrap takes in four parameters: The function first initializes the output character to ‘Not found!’ and the end location to 0. It then searches for the starting…
-
Library of small Python custom functions
A quick Python function to browse a folder: Write your main code as a sample below, A sample output of the code is, How does the function work? The Python function browse_open_folder_directory does not take any arguments, but it opens a dialog box using the filedialog module of the tkinter library. The dialog box allows…
-
Remove empty and duplicates lines in a file
The objective of this Python function is to read the contents of a text file, remove any empty lines and any duplicate lines, and then overwrite the file with the updated content that no longer contains empty lines or duplicate lines. Ready-to-use Python function to empty or blank lines and duplicate lines in a file:…
-
Remove empty lines in a text file
The objective of this Python function is to read the contents of a file, remove any empty lines, and then overwrite the file with the updated content that no longer contains empty lines. Ready-to-use Python function to remove empty lines from a text file: Write your main code as a sample below, The output of…
-
How to Webscrap by Python Function?
Install the following module(s) if you haven’t installed them already: Ready-to-use Python function to scrap content of a website: Write your main code as a sample below, The output of the code is, This is a Python function that performs web scraping on a specified URL using the Requests library. Here’s how the function works:…
-
Convert an image size using Python ready-to-use function
Install the following modules if you haven’t installed them already: Ready to use Python function to convert or scale or re-size an image using Pytho ready-to-use function: Write your main code as a sample below, The output of the code is, This code is written in Python and uses the Pillow library to resize an…