Gaurav Dixit
Angular MEAN Stack CRUD Tutorial Example
In this MEAN stack Article, I will share step by step process to build an Angular CRUD (Create, Read, Update, Delete) app from scratch. Let us understand what does MEAN stack means. Mongo DB – It’s an open-source NoSQL cross-platform document-oriented database. Express JS – It’s a web-based application framework work with Node JS, It … Read more
Python List
Python List A list contains items separated by commas and enclosed within square brackets ([]). To some extent, lists are similar to arrays in C. One difference between them is that all the items belonging to a list can be of different data type. The values stored in a list can be accessed using the … Read more
Python String
Python String Strings in Python are identified as a contiguous set of characters represented in the quotation marks. Python allows for either pairs of single or double quotes. Subsets of strings can be taken using the slice operator ([ ] and [:] ) with indexes starting at 0 in the beginning of the string and … Read more