Posts

Python list

In this article we will be discussing about python list in detail.It covers everything about python lists.the topics to be discussed in python lists are: What is Python list? How List is different from tuple? How to use Nested lists in python? How to do Iterations over python lists using For loop? What is the use of build-in range function in python lists? How to use While loop in python lists? Along with these topics we will discuss some more features of python lists like: Assigning and copying lists List Comprehensions What is Python list? A list is a Linear Data Structure used to store the elements in linear order. Index values are used to identify items in a list. Zero-based indexing is used in the python which means indexing starts from 0 to n-1 where n is the total number of elements in a list. Python lists are Mutable which means they can be altered.there can be mixed type of elements in a list like integers, strings, float etc. A...

python enumerate

Image
Enumerate is a build-in function of python. most of the Beginners in python have no idea about the python enumerate. even some advanced programmers are also not aware of the usefulness of enumerate. what is enumerate in python and how we can use it? With the help of enumerate build-in function we can loop over something iterable and have an automatic counter that has been generated by a counter variable. by default the counter starts from 0 but we can set it at any number.for example: Enumerate() is a build-in function used by python to simplify the tasks performed by programmers.With the help of enumerate() we can iterate over many different type of objects like strings, tuples, lists etc. one thing which makes it even more useful is that it accepts an optional argument which tells the enumerate from where to start the index. also,using a list, tuples containg index and list can be created.            

Which top 4 Programming Languages you must learn in 2019?

Image
Today I'll be talking about 4 top programming languages to learn in 2019. my list is based on 4 things. Market, Popularity, Future, Salary. So, let's start with the language at No.4. 4. JAVA Java was created over 20 years ago in 1991 by James Gosling. it is a general purpose language and all of us have heard about Java many times. there are many big and small companies who run their software on Java and still continue to use Java. its key of popularity is WRITE ONCE AND RUN ANYWHERE. It is is the primary language for Android applications. Some of the companies which still use Java are uber, airbnb, stack, lyft etc. According to the stack overflow’s survey java is used by 45.3% people. However interest for java has definitely declined over the years maybe because it is a more complicated language.that is why it is on 4th number on my list. 3.GOLAND Go  was released  in 2012 by engineers working on Goo...

Introducing Pyton

Image
Have you heard about Monty python's flying Circus. It is a 1970s  British comedy sketch television show(Check them out at YouTube). Python got its name from this show. Also the name of development environment IDLE Provided with Python comes from the name of member of this comic show.                                 Python was created by guido van rossum and it was released in 1991. Python  is a simple and easy to use programming language. Many organizations and companies like NASA, Google, Yahoo, YouTube are using python. Its syntax is simple and programs are easy to read. It is a widely used programming language as it provides many powerful programming features. It is a free and well supported language. You can download it from  www.python.org . I t is gaining popularity day by day. It uses multiple paradigms like functional, procedural and object-oriented. It is one of the most searched...

what are the secrets behind python’s popularity?

Image
In the past 1 year, Americans have googled python more than Kim Kardashian and the main reason behind this is the simplicity and flexibility of the python.it has bought coding to the fingertips of the people who were hard at programming once.it is open source and we can download  it for free. here some questions pop up to our minds:    what make python simple and easy to learn? what makes it different from other programming languages? what is the reason behind its popularity? Its syntax is straightforward and simple which makes it easy to read. It uses Indented spaces which makes the code easy to understand.   It has 145,000 custom-build software packages uploaded to an online repository from developing apps, game development to astronomy. It can also be used as a sever to create websites, System scripting, Software development,mathematics etc. It is used by Google, YouTube, Spotify, Pixar, Yahoo and many more sites. What python can do? it can ...