Shape Rule
Odd numbers only
Row 1 prints 13579, row 2 prints 3579, row 3 prints 579, and so on as the start shifts right.

The left-shifted odd number triangle prints consecutive odd digits on each row while the starting odd value increases — a great exercise in nested loops with step size 2. This tutorial covers the shape rule, loop structure, a live preview, algorithm steps, worked Python examples, edge cases, and complexity.
Odd numbers only
Row 1 prints 13579, row 2 prints 3579, row 3 prints 579, and so on as the start shifts right.
range(..., 2)
for i in range(1, max_n + 1, 2) picks the starting odd number for each row: 1, 3, 5, 7, 9.
step 2 to max_n
for j in range(i, max_n + 1, 2) prints odd digits from the row start up to max_n.
Same line / next line
Odd digits use print(j, end=""); end each row with print().
1–20 max
Pick a maximum value and draw the left-shifted odd triangle instantly in the browser.
Complexity
Total digit prints shrink each row; complexity is still O(n²) for maximum n.
A left-shifted odd number triangle prints consecutive odd numbers on each row while the starting odd value increases by 2. With max_n = 10, the output is 13579, 3579, 579, 79, 9.
In Python you solve it with nested loops that step by 2: for i in range(1, max_n + 1, 2) and for j in range(i, max_n + 1, 2), then print() ends each row.
It teaches step-size loops (+= 2) before more complex parity-based patterns.
range(..., 2) and range(..., 2) visit only odd values.
Each row starts at a larger odd i, so fewer digits print.
print(j, end="") in the inner loop; print() after.
Follow Program 16; continue to Program 18 (alternating odd/even rows).
In short: for each odd start i from 1 to max_n, print odd j from i to max_n stepping by 2, then call print().
Given a positive integer max_n, print a left-shifted odd number triangle: row starting at odd i prints odd digits from i to max_n stepping by 2.
# max_n = 10 (conceptual shape)
# 13579
# 3579
# 579
# 79
# 9
for i in range(1, max_n + 1, 2):
for j in range(i, max_n + 1, 2):
print(j, end="") # odd digits i..max_n
print() # next row | Item | Type | Description |
|---|---|---|
max_n | int | Upper bound for odd digits on each row (typically ≥ 1). |
| Printed output | text | Each row prints consecutive odd numbers from i to max_n. |
for i from 1 to max step 2:
for j from i to max step 2:
print j (no newline)
print newline | Approach | Idea | Best for |
|---|---|---|
| Nested loops + step 2 | 13579, 3579, … | Learning and interviews |
| Even max adjustment | if max_n % 2 == 0: max_n -= 1 | User-input programs |
| Even-number variant | Start at 2 with step 2 | Mirror pattern with evens |
| Goal | Pattern |
|---|---|
| Walk each row start | for i in range(1, max_n + 1, 2) |
| Print odd digit | for j in range(i, max_n + 1, 2): print(j, end="") |
| End the row | print() |
| Force odd maximum | if max_n % 2 == 0: max_n -= 1 |
| Even variant | for i in range(2, max_n + 1, 2) with matching inner step |
| Spaced output | print(j, end=" ") |
Same left-shift idea — different bounds and step handling.
odd startOuter loop picks 1, 3, 5, 7, 9
odd digitsInner loop prints only odd values
even fixAdjust even user input to odd bound
trace i,jTrace max_n = 10 on paper before coding
Reach for this pattern when teaching loop step sizes and shrinking row widths.
Step-size loops build on binary patterns from Programs 15 and 16.
Outer/inner bound practice with an immediate visual check.
Combine loops with input() for a flexible row count.
Compare Program 16 (binary triangle) and Program 18 (alternating odd/even rows) next.
This is a console teaching pattern — not how you build modern app screens.
Key benefit: one small program that locks in nested loops, output sequencing, and O(n²) thinking.
Choose a maximum between 1 and 20 and draw the left-shifted odd triangle in the browser.
Three complete Python programs — fixed maximum, user input, and an even-number mirror variant. Click View Output to reveal sample console results.
Print the left-shifted odd triangle with max_n = 10 and += 2 loops.
max_n = 10Hard-coded upper bound — ideal for first demos and screenshots.
for i in range(1, 11, 2):
for j in range(i, 11, 2):
print(j, end="")
print() When i = 1, the inner loop prints 1, 3, 5, 7, 9 as 13579. When i = 5, it prints 5, 7, 9 as 579, and so on as the start shifts right. print() after the inner loop starts the next row.
Read the maximum with input() and adjust even input to an odd bound.
Read max_n with input() and int() (wrap in try/except ValueError in real apps); subtract 1 when the value is even.
max_n = int(input("Enter the maximum value: "))
if max_n % 2 == 0:
max_n -= 1
for i in range(1, max_n + 1, 2):
for j in range(i, max_n + 1, 2):
print(j, end="")
print() max_n = 8 becomes 7 after the even adjustment, so the last odd printed is 7. The nested step-2 loops stay the same as Example 1. Non-numeric input raises ValueError with bare int(input()) — use try/except for safer labs.
Mirror the pattern with even numbers starting at 2 instead of 1.
Start both loops at 2 and step by 2 to print only even digits up to max_n = 10.
max_n = 10
for i in range(2, max_n + 1, 2):
for j in range(i, max_n + 1, 2):
print(j, end="")
print() Same left-shift structure as Example 1, but both loops start at 2 and visit only even values. Compare with the odd version to see how the start value changes the sequence.
print is built in; use input() when reading input. Set max_n (fixed or from input).
for i in range(1, max_n + 1, 2) picks the starting odd number: 1, 3, 5, 7, 9.
for j in range(i, max_n + 1, 2) prints each odd value with print(j, end="").
print() ends the row so the next outer iteration starts fresh.
Each row prints fewer digits as i grows — O(n²) time for maximum n, O(1) extra memory.
max_n = 10Trace each outer-loop value of i and note the odd j values printed on each row.
i | Inner j values | Printed row |
|---|---|---|
1 | 1, 3, 5, 7, 9 | 13579 |
3 | 3, 5, 7, 9 | 3579 |
5 | 5, 7, 9 | 579 |
7 | 7, 9 | 79 |
9 | 9 | 9 |
Five rows for max_n = 10; digit count shrinks from 5 down to 1.
Where this tiny pattern (and its loop structure) shows up beyond the homework prompt.
Clearest visual proof that outer and inner bounds interact.
Example: change j <= i and watch the shape change.
Foundation for inverted, pyramid, diamond, and hollow variants.
Example: use (i + j) % 2 for row+column parity grids.
Practice print(..., end="") vs row newline without complex math.
Example: put print() inside the inner loop by mistake.
Swap digits for letters, stars, or spaced output once the loop works.
Example: use print(j, end=" ") for spaced digits on each row.
Triangular totals make O(n²) concrete for beginners.
Example: count printed digits for n = 10 still → 55.
Pair the pattern with try/except ValueError around int(input()) and positive-bound checks.
Example: reject max_n <= 0 and re-prompt.
Pro Tip: when an interviewer asks for patterns, explain the outer/inner roles first — then write the loops. The story matters as much as the code.
Why this pattern earns a permanent spot in beginner Python courses.
Wrong bounds show up immediately as a broken staircase.
Only loops and console output — no arrays or math libraries.
Invert, center, hollow, or change the fill character with small edits.
Streaming output needs no storage beyond loop counters.
Pro Tip: learn step 2 first; compare with step 1 to see how the step size changes which numbers print.
Small habits that keep number-pattern code clean.
Use max_n (avoid shadowing builtin max) and keep i/j for row/column — or rename to start/value.
try/except ValueErrorWrap int(input()) in try/except ValueError so bad input does not leave max_n unset.
Only call print() after the inner loop finishes the row.
if max_n % 2 == 0: max_n -= 1 keeps the bound odd when reading input.
Trace max_n = 10 on paper before coding larger demos.
Pro Tip: if the output is a vertical list of single digits per line, you almost certainly put print() inside the inner loop.
Mistakes that commonly break left-shifted odd number patterns.
Each digit lands on its own line — you get a column, not a triangle.
→ Use print(j, end="") for digits; print() only after the inner loop.
range(i, max_n + 1) (step 1) prints even numbers too — the row no longer contains only odds.
→ For odd-only rows, keep for j in range(i, max_n + 1, 2).
Omitting print() glues every digit onto one endless line.
→ Always end the row after the inner loop.
Letters or empty input raise ValueError with bare int(input()).
→ Catch ValueError and re-prompt on failure.
Switching to a 0-based outer start without adjusting the stop value can drop the last row or print wrong odds.
→ Prefer range(1, max_n + 1, 2) with range(i, max_n + 1, 2) for the digits.
Check these inputs before calling the solution done.
Output is just 1 on one line.
Outer loop never runs — print nothing or show a message.
max_n < 0Treat as invalid; re-prompt instead of silent empty output.
Output grows as n²/2 characters — fine for labs, noisy for huge n.
int(input()) raises ValueError — validate with try/except first.
Subtract 1 or prompt again — otherwise the last odd may not match intent.
Step 1 includes even numbers — use range(..., 2) for odd-only output.
Try these variations to lock in the pattern.
j = 1 to i with j % 22 on both loopsprint(j, end=" ") between digitsi grows — still O(n²) prints for maximum n.print(j, end="") stays on the line; print() advances — mix them carefully.max_n > 0 for interactive programs; max_n = 1 should print a single 1.Quick Takeaway: outer loop steps by 2 for row starts, inner loop prints odd j up to max_n, then break the line.
| Program | Time | Extra space |
|---|---|---|
| Nested loops (Examples 1–2) | O(max²) | O(1) |
| Even variant (Example 3) | O(max²) | O(1) |
The left-shifted odd number triangle is a compact lesson in loop step sizes: += 2 on both loops prints only odd values while each row starts later. Master the fixed-max version, then try the user-input and even-mirror variants.
Practice the three examples above, then continue to Program 18 for the alternating odd/even number triangle.
Use range(1, max_n + 1, 2) and range(i, max_n + 1, 2) for odd-only digits — keep print(j, end="") for numbers and print() for the break, and adjust even max_n when reading input.
range(..., 2) before codingprint(j, end="") for digits and print() after each rowmax_n ≥ 1 for interactive programsint(input()) in try/except ValueError before using max_nprint() inside the inner digit loop1 when you meant odd-only with range(..., 2)max_n = 1 edge casePrint the pattern the beginner-friendly way.
Only odd digits print
Definitionrange(..., 2) picks start
Inner step 2 to max_n
CodeRows shrink each line
ShapeO(n²) time
AnalysisBoth loops step by 2 with range(..., 2), so only odd numbers print. Each row starts at a larger odd value, so the triangle shifts left — still O(n²) for maximum n.
Move on to the alternating odd/even number triangle in the Python number-pattern series.
12 people found this page helpful