> For the complete documentation index, see [llms.txt](https://blog.dhilipsanjay.in/ctfs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.dhilipsanjay.in/ctfs/tryhackme/tryhackme/adventofcyber2/day15-theresapythoninmystocking.md).

# Day 15 - There's a Python in my stocking!

**Date:** 15, December, 2020

**Author:** Dhilip Sanjay S

***

### What's the output of True + True?

* **Answer:** 2

***

### What's the database for installing other peoples libraries called?

* **Answer:** PyPi

***

### What is the output of bool("False")?

* **Answer:** True

***

### What library lets us download the HTML of a webpage?

* **Answer:** Requests

***

### What is the output of the program provided in "Code to analyse for Question 5" in today's material?

* **Answer:** \[1, 2, 3, 6]

***

### What causes the previous task to output that?

* **Answer:** Pass by reference

***
