Tic-Tac-Toe in Python

A fun-to-play standard tic tac toe for two human players, both at the same device using Python script – Raghav332004/Tic-Tac-Toe… Read more

Similar

Why I moved from Python to Go

Before we begin This article will be about why I switched from Python to Go. This is from my experiences doing development in both over many years. Like many articles of this type, some people might feel that their choices are being offended. That's reall... (more…)

Read more »

Functions in Python

A function is a block of code that performs an operation usually a specific task. Functions help break our program into smaller and modular chunks, making them resusable and redable. They prevent repetition of code. You can pass data known as parameters... (more…)

Read more »