7. Libraries: Progress_Bar, Plot, Table, Curses, Logging, Scraping, Web, Profile, NumPy, Image, Audio, Games, Data. Libraries Progress Bar # $ pip3 install tqdm >>> from tqdm import …
programmerdude
-
-
Collections: List, Dictionary, Set, Tuple, Range, Enumerate, Iterator, Generator. List <list> = <list>[from_inclusive : to_exclusive : ±step_size] <list>.append(<el>) # Or: <list> += [<el>] <list>.extend(<collection>) # Or: <list> += …
-
The conditional operator ?:, also known as the ternary conditional operator, evaluates a Boolean expression and returns the result of one of the two expressions, depending on whether the Boolean …
-
Awesome C++ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-… stuff. Awesome C++ Standard Libraries Frameworks Artificial Intelligence Asynchronous Event Loop …
-
There are a lot of great tutorials on youtube for programmers, hours of content. In this article we look at some of our favourites. C programming tutorial A 3 hour …
-
/* *** SYNOPSIS http://nodejs.org/api/synopsis.html *** */ var http = require(‘http’); // An example of a web server written with Node which responds with ‘Hello World’. // To run the server, …
-
A Stack is a type of collection that stores elements in Last In First Out style. C# includes the generic Stack<T> and non-generic Stack collection classes You can use the …
-
A Queue is a special type of collection that stores the elements in a First In First Out style, it is exactly the opposite of the Stack collection. It contains …
-
the ArrayList is a non-generic collection of objects whose size increases dynamically. It is the same as Array except that its size increases dynamically. An ArrayList can be used to …
-
A Tuple is a data structure, and it is useful to store the sequence of elements of different data types. Using a tuple, we can return more than one value …