#cs50p
Read more stories on Hashnode
Articles with this tag
In this problem set we explore the use of regexes (regular expressions) to examine patterns within our code. Regular expressions enable us to examine...
In this Problem Set we explore File I/O (input/output), which is the ability of a program to take a file as input or create a file as...
In this Problem set we revisited some of our older problems and wrote test code to check that the code is working as expected. With the help of the...
Libraries are snippets of code written by you or others that you can use in your program. Using libraries can save time and effort for both novice and...
Exceptions are errors that occur within our coding. We will discuss how to handle exceptions in Python using try and except, which are ways of testing...
In this article, we will be delving into loops and dictionaries in Python. Loops are a fundamental aspect of programming, and there are various ways...