Open in app

Sign in

Write

Sign in

Luay Matalka
Luay Matalka

1K Followers

Home

About

Published in

Towards Data Science

·Pinned

How to Easily Create Tables in Python

How to use the tabulate function to create nicely-formatted tables in Python — Being able to quickly organize our data into a more readable format, such as when data wrangling, can be extremely helpful in order to analyze the data and plan the next steps. …

Data Science

5 min read

How to Easily Create Tables in Python
How to Easily Create Tables in Python
Data Science

5 min read


Published in

Towards Data Science

·Pinned

Unpacking Operators in Python

Using the * and ** unpacking operators in Python — Introduction In this tutorial, we will learn how to use the asterisk (*) operator to unpack iterable objects, and two asterisks (**) to unpack dictionaries. In addition, we will discuss how we can pack several values into one variable using the same operator. And lastly, we will discuss what *args and…

Programming

6 min read

Unpacking Operators in Python
Unpacking Operators in Python
Programming

6 min read


Published in

Towards Data Science

·Pinned

Sorting a Dictionary in Python

How to sort a dictionary in Python — Introduction We can sort lists, tuples, strings, and other iterable objects in python since they are all ordered objects. Well, as of python 3.7, dictionaries remember the order of items inserted as well. Thus we are also able to sort dictionaries using python’s built-in sorted() function. …

Programming

4 min read

Sorting a Dictionary in Python
Sorting a Dictionary in Python
Programming

4 min read


Published in

Towards Data Science

·Pinned

JSON and APIs with Python

An Introduction to JSON and APIs using Python — Introduction In a different tutorial, we discussed how to web scrape with python. The goal of web scraping was to access data from a website or webpage. Well, sometimes a website can make it easier for a user to have direct access to their data with the use of an API…

Programming

5 min read

JSON and APIs with Python
JSON and APIs with Python
Programming

5 min read


Published in

Towards Data Science

·Pinned

The Walrus Operator in Python

Learn what the walrus operator is and how to use it in Python — The walrus operator, introduced in Python 3.8, offers a way to accomplish two tasks at once: assigning a value to a variable, and returning that value, which can sometimes offer a way to write shorter, more readable code, that may even be more computationally efficient. Let’s review what the walrus…

Data Science

4 min read

The Walrus Operator in Python
The Walrus Operator in Python
Data Science

4 min read


Published in

Level Up Coding

·Dec 23, 2022

Understanding Dockerfiles: How to Build and Run Containers for Your Applications

Learn how to use Dockerfiles to automate the process of building and running containers for your applications — Introduction Dockerfiles are text files that contain the instructions for building Docker images. These images are the executable packages that contain the application code, libraries, dependencies, and runtime environment for your application. …

Docker

5 min read

Understanding Dockerfiles: How to Build and Run Containers for Your Applications
Understanding Dockerfiles: How to Build and Run Containers for Your Applications
Docker

5 min read


Published in

Towards Data Science

·Dec 9, 2022

A Comprehensive Beginner’s Guide to Python

Learn the basics of Python, including data types, flow control statements, functions, and modules — Python is a popular, high-level programming language known for its simplicity, readability, and flexibility. It is a versatile language that can be used for a wide range of applications, from web development and scientific computing to data analysis and artificial intelligence. Getting Started To start using Python, you need to have it…

Python

7 min read

A Comprehensive Beginner’s Guide to Python
A Comprehensive Beginner’s Guide to Python
Python

7 min read


Published in

Geek Culture

·Nov 21, 2022

The all() Function in Python

How to check if every element in an iterable satisfies a condition — satisfying all conditions Let’s say that there’s a job posting for a data science position. This position requires a candidate to meet all of the following criteria: at least 10 years of SQL experience, 12 years of machine learning experience, and 8 years of statistical analysis experience. and operator We can write a function that…

Artificial Intelligence

3 min read

The all() Function in Python
The all() Function in Python
Artificial Intelligence

3 min read


Published in

Geek Culture

·Jul 31, 2021

The any() Function in Python

Learn about the any() function in Python — or operator Let’s say a job posting only requires one of the following to be true: at least 10 years of SQL experience, or 12 years of machine learning experience, or 8 years of statistical analysis experience. We can write a function that checks if any of those are True by using…

Machine Learning

2 min read

The any() Function in Python
The any() Function in Python
Machine Learning

2 min read


Published in

Geek Culture

·Jul 31, 2021

Split a String Into a List in Python

Learn how to split a string into a list in Python — Split a Single String Into a List We can make a list of strings from a single string using the split method: str.split(sep=None, maxsplit=-1) str is the string that will be split or used to create the list. sep is the delimiter string. maxsplit is the maximum number of splits needed (so the list will have at…

Programming

2 min read

Split a String Into a List in Python
Split a String Into a List in Python
Programming

2 min read

Luay Matalka

Luay Matalka

1K Followers

Cloud Data Engineer with a passion for teaching.

Following
  • Yang Zhou

    Yang Zhou

  • Yong Cui

    Yong Cui

  • Ismael Araujo

    Ismael Araujo

  • Indhumathy Chelliah

    Indhumathy Chelliah

  • GitLab

    GitLab

See all (25)

Help

Status

About

Careers

Blog

Privacy

Terms

Text to speech

Teams