With Lisp and Scheme out of the way, I figured it might be fun to play with one of Scheme's dialects, Racket. In this exercise, we'll implement Hello World in Racket.
Tag: Language Features
Day 10 of 100 Days of Code brought along a bit of a personal challenge: macros. Implementing Hello World in Rust wasn't as easy as I thought it would be.
Day 9 of 100 Days of Code brings us Hello World in Go, a language by Google. Only 91 more days to go - pun intended!
Sometimes when we're using lists, we need to clone them, so we can modify them independently. Luckily, we'll cover several ways to copy a list in Python.
How to Convert Two Lists into a Dictionary in Python: Zip, Comprehensions, and Loops
Tired of iterating over a pair of lists? Want easy access to whatever you need from your data set? Lucky for you, this tutorial covers just how to convert two lists into a dictionary.
How to Sum Elements of Two Lists in Python: Comprehensions and More
What's the best way to add each pair of elements of two lists? As it turns out, it's easier than you think to sum elements of two lists.
