Uncategorized
PEGA FRESHERS JOB OPPORTUNITY WITH EVONSYS Dear Students, Harsha Trainings in Collaboration with EVONSYS, recruiting PEGA freshers. Harsha Trainings is number software training centre located in Hyderabad. It delivers job-oriented software course and provide placement opportunities to students across the globe. Harsha trainings offers both class room and online trainings on different technologies like PEGA, […]
PEGA FRESHERS JOB OPPORTUNITY WITH ARETEANS Dear Students, We initiated talks with ARETEANS for PEGA fresher JOB opportunities. We would like to inform you that the talks were successful and they agreed to conduct interviews for freshers on PEGA @Hyderabad, INDIA. We both agreed to have a long-term relation to continue with this hiring process […]
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 […]