Python is a popular programming language. It was created by Guido van Rossum, and released in 1991
web development (server-side),
software development,
mathematics,
system scripting.
Change the directory to the file containing directory and type "python fileName" to execute the file
Here, all the contents that i have learned in my summer break training class are kept.
Here, all the python basic self learned content like syntax are kept
Here, basic sytax of python such as identation , rules, printing statement are written.
Here, operation on string such as (format, multiple line comment, looping in string, length of string and slicing of string) are written.
Lists are used to store multiple items in a single variable. List items are ordered( have a defined order), changeable( can change, add, and remove items in a list), and allow duplicate values( can have items with the same value).
Lists are written with square brackets.
In this file different action releated to list in python is kept.
Tuples are used to store multiple items in a single variable. A tuple is a collection which is ordered and unchangeable and allow duplicate values.
Tuples are written with round brackets.
In this file different action releated to tuple in python is kept.
Set are used to store multiple items in a single variable. Set items are unordered, unchangeable( but can add, and remove items in a list), and doesnot allow duplicate values.
Set are written with curly brackets.
In this file different action releated to set in python is kept.
Dictionary are used to store multiple items in a single variable. A dictionary is a collection which is ordered and changeable and doesnot allow duplicate values.
Dictionary are written with round brackets.
In this file different action releated to dictionary in python is kept.