What is ERPNext?

ERPNext is a leading ERP solution, recognized for its flexibility, scalability, and ease of use. Designed for small and medium-sized enterprises (SMEs) as well as large organizations, ERPNext helps bu...
0 Read More

Python Notes #4 - Functions

Functional Utilities: map(), filter(), reduce(), any(), all() ✅ map() – Apply a Function to Each Element ⛶nums = [1, 2, 3] squared = list(map(lambda x: x**2, nums)) print(squared) # [1...
0 Read More

JInja

What is Jinja? Jinja is a text rendering engine for Python programming language. It has first-class support among popular Python frameworks like Django and Flask and is used extensively. It is popular...
0 Read More