Blog

What is repr() in Python?

In Python, the built-in repr() function returns a string containing a printable representation of an object. For a class object, repr() returns a string enclosed in angle brackets <> containing the name and address of the object by default This tutorial will go...

read more

How to Read and Write to File in Rust

This tutorial will go through how to read and write to a file for Rust version 1.26+ and Rust version 1.0. Table of contentsRead a File to String in Rust 1.26+Read a File to String in Rust 1.0Read a File to Vec<u8> in Rust 1.26+Read a File to Vec<u8> in Rust...

read more