Python is an interpreted, general-purpose object-oriented programming language. It’s designed to have better code readability and has a gentler learning curve compared to other languages. Its formatting is visually uncluttered, and it often uses English keywords where other languages use punctuation. Following are our tutorials on python:
Python for Data Science
Data Science is the practice of extracting meaningful and actionable insights from data. Python, R, Jupyter, Spider, etc are just tools that enable us to do that. Python is preferred by a number of data science practitioners because of its power and support of a number of open-sourced libraries like numpy, pandas, scipy, scikit-learn for accomplishing almost any data-related tasks. Also, it has an easier learning curve for beginners.
Here’s the complete list of articles of our five-part tutorial series on Python for Data Science:
Python Strings
Strings in python are immutable sequences of Unicode characters. Python has a number of in-built functions for working with strings. Also note that strings implement all common sequence operations like membership tests, slices, etc.
Tutorials on python strings:
- Python – Trim Whitespace Characters from Strings
- Python – Reverse a String with Examples
- Python – Remove Character From String
- Python – Frequency of each word in String
- Python – Convert List to a String
- Python String Count – With Examples
- New String Functions in Python 3.9
- Python String Find – With Examples
- Python String Startswith – With Examples
- Python String Endswith – With Examples
- Python String Split – With Examples
- Python String Join – With Examples
- Python String Concatenation – With Examples
- Python String Replace – With Examples
- Python String Uppercase – With Examples
- Python String Lowercase – With Examples
- Python String Strip – With Examples
Python List
Lists are used to store an ordered collection of items. These items can be any type of object from numbers to strings or even another list. This makes lists are one of the most versatile data structures in python to store a collection of objects.
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
Tutorials on python lists:
- Python – Check if an element is in a list
- Python – Iterate over multiple lists in parallel using zip()
- Python – Flatten a list of lists to a single list
- Pandas DataFrame to a List in Python
- Python – Convert List to a String
- Convert Numpy array to a List – With Examples
- Python List Comprehension – With Examples
- Python List Index – With Examples
- Python List Count Item Frequency
- Python List Length
- Python Sort a list – With Examples
- Python Reverse a List – With Examples
- Python Remove Duplicates from a List
- Python list append, extend and insert functions.
- Python list remove, pop and clear functions.
Python Dictionary
Dictionaries are used to store key to value mappings in python. Unlike sequences (example, lists, tuples) which are indexed by a range of numbers, dictionaries are indexed by keys. Dictionaries are mutable but you can only use immutable types as their keys.
More Python Tutorials
Tutorials on python deque –
- Python – Append Element to the Left in Deque
- Python – Append Element to a Deque
- Python – Pop Element From Left in Deque
- Python – Pop Element From the End in Deque
- Python – Insert Element at a given Index in Deque
- Python – Remove all elements from a deque (clear deque)
- Python – Remove Element by Value in Deque
- Python – Get Index of a Value in Deque
- Python – Reverse a deque
- Python – Get the Max Size of a Deque
- Python – Extend deque to the left
- Python – Rotate a Deque to the Right and Left
- Python – Create a deque copy
- Python – Count occurrences of a value in deque
- Python – Get the First and Last Element in a Deque
- Python – Get Value by Index in Deque
- Python – Check If a Deque is Empty
- Python – Get the Maximum and the Minimum Value in a Deque
- Python – Get the Index of the Minimum Value in Deque
- Python – Get the Index of the Maximum Value in Deque
- Python – Convert a deque to a list
- Python – Convert a deque of strings to a single string
More tutorials on python lists –
- Python – Check If All Elements in a List are Equal
- Python – Check If All List Elements are of the same Type
- Python – Check If All Elements in List are Zero
- Python – Check If All Elements in List are None
- Python – Check If All Elements in List are Integers
- Python – Check If All Elements in List are Strings
- Python – Check If All Elements in List are Positive
- Python – Check If All Elements in List are Negative
- Python – Check If Index Exists in List
More tutorials on python strings –
- Python – Check If All Characters in String are Same
- Python – Check If String Contains Uppercase Letters
- Python – Check If String Contains Lowercase Letters
- Python – Check If String Contains Vowels
- Python – Check If a Character Appears Twice in String
- Python – Check If String Starts with a Letter
- Python – Check If String starts with a Number
- Python – Check If String Ends with a Number
- Python – Check If String Starts with a Vowel
- Python – Check If String Ends with a Vowel
- Python – Check If String Starts with any in a List
- Python – Check If String Ends with any in a List
- Python – Check If String Ends with a Newline Character
More python I/O tutorials –