How to clear autofill entries form in html
Table of contents Introduction How-to-clear-autofill-entries-in-browser-with-HTML Summary Introduction When develop a web application especially building form and fill the user input it is quite bothersome when auto-fill entries keep shows up in the form. You can do...
How To Iterate List, Dictionary and List in Dictionary – Flask Python
Introduction In Python we learn few datastructures such as tuple, list, dictionary. Flask as Python web framework has it's own way to handle Python datastructures. In this tutorial is a guide how to iterate through Python datastructures using Flask for: list...
How to Change Flask Port Number
Introduction As we know that Flask default port number is 5000. If you want to run two Flask server simultaneously or concurrently this will produce an error for the later website to run. This is due to the port can only have unidentical or unique port number from one...
SQLite3-Python Todo app convert tuple to dictionary
Introduction In previous tutorial todo app using Python-SQLite3 using SQL-query list of tuples to query read and find task inside database. This time we will level up by using a list of Dictionary. Below is the script that will be modify for read-task and find_task...
PYENV Guide For Multiple Python Version Installation
Introduction Managing multiple Python projects into different Python versions is not an easy task. This is where your current project will either make or break due to unsatisfy project requirements. What is pyenv? pyenv is a Python version management tool. pyenv were...
Why Lambda Python Anonymous Function?
What-is-LAMBDA? lambda is like a function in python. lambda is like or an alternative to function .You might want to view lambda as an anonymous function because you don't need to specify a name like creating a function. def function_name(): pass Since Python already...
How to use Itertools Python
What is itertools? Itertools is a Python module that used to iterate iterables using for-loop. As according to Python official itertools - Functions creating iterators for efficient looping It is useful to construct different of sequences using iterators. itertools...
How to make use os.path.join Python module
What is os.path.join Python module There will be time the need to get information or execute on local directories and file. Task like read and connect to database is one of the example that commonly used to create a function using os.path.join() module. A project read...
Python – Modular Programming With Modules
Introduction Size of software or application can grow and getting complex from time to time. If you want to write a scaleable, readable and manageable application you need to organize in proper ways. This is where modular programming as a software design technique...
Python Object Oriented Programming (OOP)
Introduction Python is known for its strength as Object Oriented Programming even though Python itself is a multi-paradigm progamming language which support different programming approaches like other design pattern such as procedural, functional and more. OOP uses...