Articles tagged with "python"

String Joining Techniques Across Python, Java, JavaScript, and PHP

String manipulation is a common task in programming, and joining strings is a key part of it. Different languages offer various methods to achieve this. This article compares the string join techniques in Python, Java, JavaScript, and PHP, providing a quick reference for developers to understand and use these methods effectively.

Multiple Assignment Syntax in Python

The multiple assignment syntax, often referred to as tuple unpacking or extended unpacking, is a powerful feature in Python. In this tutorial, we will demonstrate the basics of Python's multiple assignment syntax through a series of practical examples.

Python Tkinter Basics: An Introduction to Tkinter UI with the Place Layout

Tkinter is a popular library for creating user interfaces with Python. In this tutorial you will learn the usage of the Place-Layout

Python Tkinter Basics: An Introduction to Tkinter UI with the Grid Layout

Tkinter is a popular library for creating user interfaces with Python. In this tutorial you will learn the usage of the Grid-Layout

Python Tkinter Basics: An Introduction to Tkinter UI with the Pack Layout

Tkinter is a popular library for creating user interfaces with Python. In this tutorial you will learn the usage of the Pack-Layout

Data Selection with loc[], iloc[] and at[] for DataFrames in Pandas

How to select data in a DataFrame in Pandas with loc, iloc and at

Introduction to Machine Learning with Python

Short review of the popular machine learning book "Introduction to Machine Learning with Python"

Introduction to Machine Learning with Python

Manage library dependencies in Python

How do you find out which libraries are used in a python program if the requirements.txt is missing?

String Functions startswith and endswith in Python

How to effectively utilize the startswith and endswith functions in Python

Leap Years Calculation with PHP, Java, Python and JavaScript

Determine leap years with different implementations in PHP, Java, Python and JavaScript.