Python

Map(), reduce() and filter() functions in Python

Map, reduce and filter are paradigms of functional programming. These helps in writing simple, short codes without worrying about iterations like loops and branching. Functional Programming: A Programming paradigm that uses functions to define a computation is known as functional programming. One important feature is concept of unchangeable state. This works only on immutable data …

Map(), reduce() and filter() functions in Python Read More »

PyScript: Python in Browser

What is PyScript? PyScript is a framework that allows users to create Python applications in browser by using Python in standard HTML. PyScript aims to provide users first class programming language experience by providing consistent styling rules, more expressive and easier to learn. Anaconda’s CEO Peter Wang announced this new technology at PyCon US 2022. …

PyScript: Python in Browser Read More »

CRUD operations in SQL

CRUD operations in SQL             CRUD is an acronym that stands for Create, Read, Update and Delete. Each letter in acronym refers to all functions executed in a database and mapped to standard HTTP method, SQL statement. CRUD is data-oriented and standardized use of HTTP action methods. This consists of four basic operations which we …

CRUD operations in SQL Read More »

Delete, Truncate and Drop Table in SQL

Let us understand the difference between delete truncate and drop table: Delete Truncate and Drop Table: Characteristics Delete Truncate Drop Command Type DML(Data Manipulation Language) DDL(Data Definition Language) DDL(Data Definition Language) Rollback transaction Can be rolled back Cannot be rolled back Cannot be rolled back Permanent delete Since it is DML does not remove records …

Delete, Truncate and Drop Table in SQL Read More »