DEV Community

Tony Ochieng
Tony Ochieng

Posted on

Python 101: Introduction to Python for Data Science

Python is a popular programming language for data science due to its simplicity, versatility, and wide range of libraries and tools available for data analysis, visualization, and machine learning.
Here are some of the libraries and tools commonly used in Python for data science:

NumPy: a library for numerical computing with support for arrays, matrices, and mathematical operations.

Pandas: a library for data manipulation and analysis with support for reading and writing various data formats, such as CSV, Excel, and SQL databases.

Matplotlib: a library for data visualization with support for creating a wide range of plots and charts.

Seaborn: a library for data visualization that provides a high-level interface for creating statistical graphics.
**
Scikit-learn**: a library for machine learning with support for classification, regression, clustering, and other algorithms.

TensorFlow: a library for building and training machine learning models with support for deep learning, natural language processing, and other advanced techniques.

To get started with Python for data science, the first step is to learn python programming basics;

Syntax: Python code is written using a simple, easy-to-read syntax that is similar to natural language. For example, to print the phrase "Hello, world!" to the console, you can use the following code:

print("Hello, world!")
Enter fullscreen mode Exit fullscreen mode

Variables
You can use variables to store and manipulate data in your program. Here are some basics of working with variables in Python:

Variable Names: In Python, variable names can consist of letters, numbers, and underscores, but must start with a letter or underscore. Variable names are case-sensitive, so "myVar" and "myvar" are different variables.

Assigning Values to Variables: You can assign a value to a variable using the assignment operator "=" like so:

my_var = 42
Enter fullscreen mode Exit fullscreen mode

Data Types: Python is dynamically typed, which means that the data type of a variable is inferred from the value it holds. Some common data types include:
Integers: Whole numbers like 42, -10, or 0.

Floating-point numbers: Decimal numbers like 3.14, -2.5, or 0.0.

Strings: Sequences of characters enclosed in single or double quotes, like "hello", "world", or "42".

Booleans: True or False values, which are used to represent logical conditions.

Working with Variables: Once you have assigned a value to a variable, you can use it in your code. For example, you can print the value of a variable using the print() function like so:

print(my_var)
Enter fullscreen mode Exit fullscreen mode

Control Structures
Control structures in Python are used to control the flow of execution in a program. They allow you to make decisions and repeat actions based on conditions in your code. Here are some of the most commonly used control structures in Python:
If-else statements: An if-else statement allows you to execute different code depending on a condition. For example:

age = 20

if age >= 18:
    print("You are an adult.")
else:
    print("You are not yet an adult.")
Enter fullscreen mode Exit fullscreen mode

In this example, if the value of the variable "age" is greater than or equal to 18, the program will print "You are an adult." Otherwise, it will print "You are not yet an adult."
While loops: A while loop allows you to repeat a block of code while a condition is true. For example:

count = 0

while count < 5:
    print(count)
    count += 1
Enter fullscreen mode Exit fullscreen mode

In this example, the program will print the values 0 through 4, because the "count" variable is initially set to 0 and incremented by 1 each time the loop runs, until it reaches 5.
For loops: A for loop allows you to iterate over a sequence of values, such as a list or a string. For example:

fruits = ["apple", "banana", "cherry"]

for fruit in fruits:
    print(fruit)
Enter fullscreen mode Exit fullscreen mode

In this example, the program will print each item in the "fruits" list.
Break and continue statements: You can use the break and continue statements to control the behavior of loops. The break statement immediately exits the loop, while the continue statement skips to the next iteration. For example:

count = 0

while True:
    if count == 5:
        break
    if count == 3:
        count += 1
        continue
    print(count)
    count += 1
Enter fullscreen mode Exit fullscreen mode

In this example, the program will print the values 0 through 4, but skip over the value 3.
Functions
Functions are a key feature of Python and allow you to group and reuse code. A function is a block of code that performs a specific task, which can be called from other parts of your code. Here are some basics of working with functions in Python:

Defining a Function: You can define a function using the def keyword, followed by the function name and a set of parentheses that may contain parameters, and finally a colon to start the function block. Here is an example of a simple function that adds two numbers:

def add_numbers(a, b):
    return a + b
Enter fullscreen mode Exit fullscreen mode

In this example, the function is called "add_numbers" and takes two parameters "a" and "b", and returns the sum of the two numbers.
Calling a Function: Once you have defined a function, you can call it from other parts of your code. To call a function, simply use the function name followed by parentheses, and pass any required parameters inside the parentheses. Here is an example of calling the "add_numbers" function:

result = add_numbers(2, 3)
print(result)
Enter fullscreen mode Exit fullscreen mode

In this example, the function is called with the values 2 and 3, which are passed as the "a" and "b" parameters. The result of the function is then assigned to a variable called "result" and printed to the console.
Default Parameters: You can define default parameter values for a function, which are used if a value is not provided when the function is called. Here is an example:

def say_hello(name="World"):
    print("Hello, " + name + "!")
Enter fullscreen mode Exit fullscreen mode

In this example, the "say_hello" function takes a single parameter "name", which has a default value of "World". If no parameter is provided when the function is called, the default value will be used. Here is an example of calling the function:

say_hello()          # Prints "Hello, World!"
say_hello("Alice")   # Prints "Hello, Alice!"
Enter fullscreen mode Exit fullscreen mode

Returning Values: A function can return a value using the return statement. Here is an example:

def get_square(x):
    return x * x
Enter fullscreen mode Exit fullscreen mode

In this example, the "get_square" function takes a single parameter "x" and returns its square. Here is an example of calling the function:

result = get_square(5)
print(result)   # Prints 25
Enter fullscreen mode Exit fullscreen mode

These are just some of the basics of Python. As you continue to learn and explore the language, you will encounter many more features and capabilities that make Python a powerful and versatile tool for programming.

Top comments (0)