One Pager Cheat Sheet
- With Python becoming the third most popular programming language in the world, it is a great choice to practice coding skills by making interesting
projects
that can be added to your portfolio, solve an everyday problem, or something you find useful in order to help you become a desirable candidate for careers in software engineering. Creating a currency or unit converter with computational programming could be a fun project, as it involves implementing functions with different types of conversion algorithms and calling them from a parent function.
A web scraper, also known as a crawler, is an automated script used to surf the internet and store the content of certain web pages, often using Python's request module, Scrapy, or an example of a web crawler in Python such as pyspider.
- This code implements a Rock, paper, scissors game, utilizing functions for generating and validating moves, declaring a winner, and keeping track of the score.
- Writing a basic multiple-choice quiz application in Python requires understanding of
loops
,functions
,conditions
,object-oriented programming
and arrays to add scores for correct answers. - You can use Tkinter to create a graphical user interface and define separate functions for performing each operation (add, subtract, multiply, divide), with
if/else
statements to decide which calculation to do.