Python Data Wrangling

This article is an introduction to Python for beginners, with the aim of equipping you with the basic knowledge and tools you need to explore and solve more complex problems.

Understanding Variables and Operations

In Python, a variable is a placeholder for storing a value. The value of a variable can be changed, and it can be of different types, such as integers, floats, strings, or booleans.
For instance, if you want to declare a variable y with a value of 3.45, you would use the following Python code:

y = 3.45

To print the value of a variable, you use the print function:

print(y) # this will print 3.45
Code language: PHP (php)

There are four commonly used types of variables in Python:

  1. Integers (int): These are whole numbers such as 1, 2, 3, and so on.
  2. Strings (str): These are sequences of characters enclosed in single or double quotes (‘hello’, “world”).
  3. Booleans (bool): These are two possible values, True or False.
  4. Floats (float): These are real numbers with a decimal point such as 3.14159.
    You can convert from one type to another using the built-in Python functions int()str()bool(), and float().
    Python also allows various operations on variables, such as addition, subtraction, multiplication, division, and modulus among others. For example:
x = 7
y = 2
print(x+y)  # Addition; this will print 9
print(x-y)  # Subtraction; this will print 5
print(x/y)  # Division; this will print 3.5
print(x%y)  # Modulus; this will print 1
print(x**y) # Exponentiation; this will print 49
Code language: PHP (php)

Working with Strings

In Python, strings are sequences of characters. They are defined by enclosing the characters in single (’ ‘) or double (” “) quotes. Strings in Python are treated as lists, and therefore, you can perform operations on them like you would on a list.
You can concatenate, or join, two strings using the + operator:

print("Hello" + " " + "World")  # this will print "Hello World"
Code language: PHP (php)

If you want to include quotation marks within a string, you can do so by using a backslash (\) before the quotation mark:

print("He said, \"Hello.\"")  # this will print He said, "Hello."
Code language: PHP (php)

Moreover, you can perform indexing on strings, which means you can access any character in a string by referring to its position inside the string. Remember that Python indexes start at 0.

my_string = "Hello World"
print(my_string[0])  # this will print 'H'
print(my_string[-1])  # this will print 'd'
Code language: PHP (php)

Python also provides various methods to manipulate strings. For example, you can convert a string to lowercase or uppercase using the lower() and upper() methods, respectively:

my_string = "Hello World"
print(my_string.lower())  # this will print 'hello world'
print(my_string.upper())  # this will print 'HELLO WORLD'
Code language: PHP (php)

You can also split a string into a list of substrings using the split() method:

my_string = "Hello World"
print(my_string.split(" "))  # this will print ['Hello', 'World']
Code language: PHP (php)

Understanding Lists and List Methods

Lists in Python are used to store multiple items in a single variable. Lists are ordered, mutable, and allow duplicate values.
To declare a list, you use square brackets []:

my_list = ["apple", "banana", "cherry"]
Code language: JavaScript (javascript)

You can access elements in a list by referring to their index number:

print(my_list[0])  # this will print 'apple'
Code language: PHP (php)

You can add elements to a list using the append() method, or insert an element at a specific position using the insert() method:

my_list.append("dragonfruit")
print(my_list)  # this will print ['apple', 'banana', 'cherry', 'dragonfruit']
my_list.insert(1, "mango")
print(my_list)  # this will print ['apple', 'mango', 'banana', 'cherry', 'dragonfruit']
Code language: CSS (css)

Python also provides several methods to remove elements from a list. You can use the remove() method to remove a specific item, or the pop() method to remove an item at a specifiedindex.

my_list.remove("banana")
print(my_list)  # this will print ['apple', 'mango', 'cherry', 'dragonfruit']
my_list.pop(1)
print(my_list)  # this will print ['apple', 'cherry', 'dragonfruit']
Code language: CSS (css)

Control Flow and Functions

Python uses control flow tools such as iffor, and while statements for handling conditions and looping through code.
An if statement is used to test a condition. If the condition is true, Python executes the block of code inside the if statement:

x = 10
if x > 5:
    print("x is greater than 5")  # this will be printed as x is indeed greater than 5
Code language: PHP (php)

For and while loops are used to repeatedly execute a block of code. A for loop iterates over items in a sequence such as a list, while a while loop continues execution as long as a certain condition holds true:

for i in range(5):
    print(i)  # this will print numbers from 0 to 4
x = 5
while x > 0:
    print(x)  # this will print numbers from 5 to 1
    x -= 1
Code language: PHP (php)

Functions in Python are blocks of reusable code that perform a specific task. You define a function using the def keyword:

def greetings(name):
    print("Hello, " + name)
greetings("Alice")  # this will print "Hello, Alice"
Code language: PHP (php)

Conclusion

Python is a flexible and powerful programming language that is widely used in various fields, from web development to data science. This guide provided an introduction to Python’s basic concepts, including variables, operations, strings, lists, control flow, and functions. With a good understanding of these fundamentals, you’ll be well-equipped to tackle more complex Python projects and further enhance your coding skills.