There's a Python in my stocking!
Scripting
Video
Resources
pip install X
pip3 install requests beautifulsoup4
This was a very short introduction to Python, but here are some more links if you wanted to learn more:
Challenge
What's the output of True + True?
2
What's the database for installing other peoples libraries called?
PyPi
What is the output of bool("False")?
True
What library lets us download the HTML of a webpage?
Requests
What is the output of the program provided in "Code to analyse for Question 5" in today's material?
(This code is located above the Christmas banner and below the links in the main body of this task)
[1, 2, 3, 6]
What causes the previous task to output that?
Pass by reference
Last updated
Was this helpful?