CommentFeb 21, 2019
Add 'sep' keyword argument to the print function, such as print(number, ".", book, sep="") Or Instead of passing multiple arguments to print, pass one argument - print(str(number)+"."+book) If you're using python3.6+, you can use f strings