Title of Next Bestseller

TBA

Author

JJB

Welcome

Welcome splash page! Provide an overview of the book.

Sample evaluation of R and Python in a side-by-side manner:

R

my_list = list(1, 2, 3)
typeof(my_list)
[1] "list"

Python

my_list = [1, 2, 3]
type(my_list)
<class 'list'>