You can just work with language-independent solutions.
- Define a
factorialfunction - Define a
fibonaccifunction - Define a
bubble_sortquick sort function which implements Bubble Sort algorithm.
- Write a program that prints sum of even numbers from 0 to 100 as short as possible?
- You have an list that contains lots of duplicated items. Create an
unique_listfunction that returns a list of unique values. There are some ways to do this. The choice is yours. - How do you log process steps in your programs?
- How you you debug your programs?
- You have an a list of URLs. Create an
fetch_responsesfunction that yields HTTP responses for each URL in list. - Create a decorator that calculates and writes the execution time of decorated functions. Using of
loggingmodule is welcomed.
- Explain how The Internet works basicly including HTTP's life cycle.
- Create an phone-index application which runs on
Django. You're totally free about features and UI design. - Create an blockchain-index application using
aiohttp, andsqlalchemyby fetching data from coinmarketcap.com's APIs.