Selenium with Python:
• Selenium with Python
Python:
• Python
Salesforce:
• Salesforce
Data Warehousing and Data Mining:
• Data Warehousing and Data Mining
Julia Tutorials:
• Julia programming Tutorials
Cloud Computing:
• Cloud Computing
Machine Learning using WEKA:
• Machine Learning using WEKA
Internet of Things:
• Internet of Things
Python supports 6 types of data types.
1. Number
2. String
3. List
1. Number
1. Number data type is used to store integer values(0-9).
2. Number is a immutable object
String
1. Using string we can store any value but
it should be in single quotes or double quotes.
2. String is a immutable object
List
1. List is used to store multiple values and
we can do operation on each value based on index.
2. Using square brackets "[]" we can create a list
3. List is a mutable object
Lists and operations –
creating,
inserting elements,
updating elements,
deleting elements,
searching and sorting,
list comprehensions,
nested lists;