Python

135 Articles 5 Followers


How to acquire Bitcoin using Python code

28 Apr 2023 1 minute read 3 comments Chainable.it

[ENGLISH] - język polski poniżej! In the last tutorial, we installed Python and Visual Studio Code, so it's time to put them to use. We will write a simple script that will fetch the current price of Bitcoin using the Coingecko API. How to code We'r...

Introduction to Python, installation of the environment

24 Apr 2023 2 minute read 1 comment Chainable.it

    Let's get straight to the point without any long introductions!   Environment   1. Due to the fact that many subsequent tutorials will cover the topic of Python, let's start with its installation and some environment in which we will be coding. I...

[Tutorial] How to make own local GPT4all in 5 minute without any skills!

23 Apr 2023 2 minute read 2 comments Chainable.it

To start with, I will write that if you don't know Git or Python, you can scroll down a bit and use the version with the installer, so this article is for everyone!   Today we will be using Python, so it's a chance to learn something new. I don't kno...

Part II - Python script to compare cryptocurrency parity between different exchanges. Cryptocurrency arbitrage as a way to profit in the crypto ecosystem.

22 Apr 2023 3 minute read 1 comment CryptoEntrepreneurs

In my personal experience, the most complicated part of cryptocurrency arbitrage is not the operations themselves, but being able to determine in time significant differences in the prices of cryptoassets between different exchanges. As I mentioned i...

What Are the Best Coding Languages to Learn in 2023?

23 Mar 2023 4 minute read 2 comments MintDice.com

In the digital age, coding has become an essential skill that is highly sought after by employers. From software development to data analysis and beyond, coding is a skill that can open up many job opportunities in various industries. If you're wond...

'Sympy' Library | Python

16 Mar 2023 2 minute read 0 comments Casper_x

Simplify your mathematical calculations with SymPy, the Python library dedicated to symbolic mathematics.   Python is a very popular programming language, and one of its advantages is that it has a wide variety of modules. One of these modules is 'Sy...

Python | Multiple Sudoku Solver

15 Mar 2023 8 minute read 0 comments Casper_x

Python Sudoku Solver: Solving 50 Sudokus in Record Time.     Are you a fan of Sudoku? Discover how a computer program solves 50 Sudoku puzzles in record time! Sudoku is one of the most popular puzzle games in the world, with grids that can sometimes...

'Random' Library | Python

13 Mar 2023 1 minute read 2 comments Casper_x

How To Use 'Random' Library ?   The 'random' module in Python is a built-in library that allows for the generation of random numbers. Random numbers are widely used in various fields such as simulation, gaming, machine learning, and cryptography. Wit...

Python | Decrypt Caesar Encryption

11 Mar 2023 4 minute read 0 comments Casper_x

Decrypt Caesar Encryption   Discover how to decrypt an encrypted message with the Caesar cipher using a simple yet effective method in Python with the ‘decrypt_cesar()’ function.   After creating my Caesar Cipher program, which allows encrypting and...

'Time' Library | Python

10 Mar 2023 2 minute read 0 comments Casper_x

How to use 'Time' library ?    The 'time' library provides access to several time-related functions in Python. These functions allow us to work with time in various ways, including measuring the execution time of code, formatting dates and times for...