Python Tutorial : Part 6 : Python List module

Sequence is the basic data structure used in python. There are 6 sequence types - strings, Unicode Strings, lists,tuples, buffers and xrange objects. The list is a most versatile datatype among these. In this tutorial, we will learn different operations we can perform on a list.

Read

Python Tutorial : Part 3 : Python Datatype

Each variable stored in memory has a datatype. Datatypes are actually classes and if you create any variable of a specific datatype, it is an object. Python’s standard datatypes can be grouped into mainly four different classes :.

Read

Python Tutorial : Part 2 : Variables

Variable is a reserved memory location to store values. You can assume it as a bucket that contains a value. Names of the different variable should be different and unique. The rules for writing variable name is the same as we have seen for identifiers.

Read

Python Tutorial : Part 1 - Introduction

Python is an easy to learn, interactive, object-oriented and open-sourced (under GPL license) programming language. It was created by Guido van Rossum during 1985- 1990.

Read

Material Design Tutorial 11: Bottom Navigation View

Previously to implement Bottom Navigation View in an android application, we need to use third party libraries. But with the release of the V25 of Design Support library, we can easily implement it with full backward support.

Read

Firebase Android Tutorial Part 4 : Firebase Storage

This is our fourth part on Firebase Android Tutorial series. Firebase Storage can be used to upload and share user generated contents like images, videos, songs etc. to the cloud. Unlike "Realtime Database", as we have seen in our [previous tutorial](https://www.codevscolor.com/2017/01/firebase-android-tutorial-part-3-firebase-realtime-database), Firebase storage uses[ Google cloud Storage ](https://cloud.google.com/storage)to store data.

Read