Tag: Python Challenges

Python Patterns

Here is a quick challenge to focus on the use of loops, nested loops and string manipulation using Python. Let’s look at the following code: for i in range(0,9): st=”” for j in range(0,i): st = st + ” “