Blog
You can delete or dictionary in a couple of different ways the most common method is by placing a comma separated list key : value pairs within curly braces Sample _ dictionary = {‘first _name,: ‘James’, ‘last_ name ‘: ‘ DEO’ , ‘Email’ : ‘Joe @gmail.com’} You can use python built _in dictionary () […]
Some of set common operations such as : Union Intersection Differences 1.Union () : Combines two sets and returns a new set 2.Intersection () : returns a new set with the elements that are common between two sets 3.Difference () : Returns a new with the elements in the set that are not in the […]
COPYING A LIST: Occasionally you will want to copy a list one simple way to copy your list is to use to copy method PYTHON LIST SORTING In this section we sort list elements python has built in list method sort ( ) and sorted ( ) function for doing sorting Example: # sorting . […]
What are the different activities we can do with visual studio code? Visual studio supports various activities like developing, build, debug, test, deploy, version control, develops, improve performance extend and data What languages can you code in visual studio code? It supports multiple programming languages like: C# : It can capabilities for building any application […]
what is Python ? The data science platform has a high significance in understanding data. Analyzing the data to extract insights that help in making business decisions What are Python modules ? A module is a python object with arbitrarily named attributes. A module is a file consisting of python code. It can defines functions, […]
A list an ordered collection of values . A list is a mutable container. This means that we can add values, delete values , or modify existing values. Python list represents a mathematical concept of a finite sequence. Values of list are called items or elements of the list. A list can contain the same […]
STRING SLICING Slicing in String works in which the same way that it does for python lists. let take the string “MIKE” MIKE means … “M” is at position ZERO “E” is at position THREE 3. LIST List is two types Ordered list Unordered list Ordered list means order cannot be change Unordered list means […]
What is a Variable in Python? Variable is an entity which holds a value at run time. Variables are programing entities which occupies space in the computer memory. The Data at application run time, can be held by variable. What is Data Type in python? Data Type is the Type of values that can be […]
JUPYTER INSTALLATION The JUPYTER notebook is OPEN_SOURCE web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. USES: data cleaning and transformation , numerical simulation, statistical modelling, Data visualization, machine learning ETC….. How to JUPYTER Installation? I will explain step by step It takes much […]
Declarative Processing: Automatic calling and execution of rules by process commander. We create declarative rule and leave them without referring from any other rule. These rules gets auto executed when we used the properties which are involved in declarative rules. Below are declarative rule Constraints Declare expression Declare on change Declare Trigger – This gets […]