Nashville Numbers, Blues Scales, and Tablature

Three tools that work together: the Nashville number system for writing chord charts, blues scales for improvisation, and tablature for seeing where to put your fingers. This guide covers all three and shows how they connect.

The Nashville Number System

The Nashville number system replaces chord names with Arabic numerals (1, 2, 3…) so that a chart works in any key. It’s the standard chart format in Nashville recording studios — a session musician can read a number chart and transpose on the fly without rewriting anything.

The idea is simple: each number refers to a scale degree. In any major key, 1 is the tonic chord, 4 is the subdominant, 5 is the dominant, and so on. The chord quality (major, minor, diminished) is determined by the key — you don’t need to write it out.

In C major:

1 = C major      5 = G major
2 = D minor      6 = A minor
3 = E minor      7 = B diminished
4 = F major

In G major:

1 = G major      5 = D major
2 = A minor      6 = E minor
3 = B minor      7 = F# diminished
4 = C major

Same numbers, different key, different chords — but the same harmonic relationships.

Using Nashville Numbers in PyTheory

Both Key and TonedScale support the nashville() method:

>>> from pytheory import Key

>>> key = Key("C", "major")
>>> [c.identify() for c in key.nashville(1, 4, 5, 1)]
['C major', 'F major', 'G major', 'C major']

>>> # Same progression, different key — just change the Key
>>> key_g = Key("G", "major")
>>> [c.identify() for c in key_g.nashville(1, 4, 5, 1)]
['G major', 'C major', 'D major', 'G major']

Nashville numbers and Roman numerals produce the same result — they’re two notations for the same concept:

>>> key = Key("G", "major")
>>> nash = [c.identify() for c in key.nashville(1, 5, 6, 4)]
>>> roman = [c.identify() for c in key.progression("I", "V", "vi", "IV")]
>>> nash == roman
True

Seventh Chords

Suffix "7" to get seventh chords — essential for jazz and blues charts:

>>> key = Key("C", "major")
>>> [c.identify() for c in key.nashville("17", "47", "57")]
['C major 7th', 'F major 7th', 'G dominant 7th']

Nashville vs. Roman Numerals

When should you use which?

  • Nashville numbers — faster to type, easier to read at a glance, standard in studio sessions. Use key.nashville(1, 4, 5, 1).

  • Roman numerals — encode chord quality (uppercase = major, lowercase = minor), standard in theory textbooks. Use key.progression("I", "IV", "V", "I").

Both are fully supported. Use whichever fits your workflow.

Blues Scales

The blues scale is a six-note scale built from the minor pentatonic plus one chromatic passing tone — the blue note (flat 5th). That single added note gives the blues its tension and character.

The blues system in PyTheory bundles several related scales (plus a full chromatic scale for passing runs):

Scale

Notes

Character

minor pentatonic

5

Foundation of rock and blues soloing

major pentatonic

5

Bright, country, pop

blues

6

Minor pentatonic + blue note (b5)

major blues

6

Major pentatonic + blue note (b3)

dominant

7

Mixolydian — dominant 7th sound

minor

7

Dorian-like — minor with natural 6th

Building Blues Scales

Use system="blues" when creating a TonedScale. The system’s scales attribute lists everything it offers, and each scale is available by name:

>>> from pytheory import TonedScale

>>> c = TonedScale(tonic="C4", system="blues")

>>> c.scales
('chromatic', 'major pentatonic', 'minor pentatonic', 'blues', 'major blues', 'dominant', 'minor')

>>> c["minor pentatonic"].note_names
['C', 'D#', 'F', 'G', 'A#', 'C']

>>> c["blues"].note_names
['C', 'Eb', 'F', 'Gb', 'G', 'Bb', 'C']

>>> c["major pentatonic"].note_names
['C', 'D', 'E', 'G', 'A', 'C']

>>> c["major blues"].note_names
['C', 'D', 'Eb', 'E', 'G', 'A', 'C']

Note

PyTheory prints whichever enharmonic spelling each scale definition carries, so the same pitch can read D# in the minor pentatonic and Eb in the blues scale above. They’re one note spelled two ways — see Working with Tones for more on enharmonics, and Working with Scales for the full catalogue of systems and scales.

The Anatomy of a Blues Scale

The blues scale in C:

C  Eb  F  Gb  G  Bb  C
1  b3  4  b5  5  b7  8

Root ──┐
       ├── minor 3rd (3 semitones)
       ├── perfect 4th (5 semitones)
       ├── diminished 5th (6 semitones) ← the "blue note"
       ├── perfect 5th (7 semitones)
       ├── minor 7th (10 semitones)
       └── octave (12 semitones)

The blue note (Gb/F#) sits between the 4th and 5th — a dissonant, unstable pitch that resolves up or down. It’s what makes blues sound like blues.

The 12-Bar Blues

The 12-bar blues is the most important chord progression in American music. It uses the Nashville numbers 1, 4, and 5:

| 1  | 1  | 1  | 1  |
| 4  | 4  | 1  | 1  |
| 5  | 4  | 1  | 5  |

In the key of A:

>>> from pytheory import Key

>>> key = Key("A", "major")
>>> bars = key.nashville(1,1,1,1, 4,4,1,1, 5,4,1,5)
>>> [c.identify() for c in bars]
['A major', 'A major', 'A major', 'A major', 'D major', 'D major', 'A major', 'A major', 'E major', 'D major', 'A major', 'E major']

For an authentic blues sound, use dominant 7th chords:

>>> bars_7 = key.nashville("17","17","17","17", "47","47","17","17", "57","47","17","57")
>>> [c.identify() for c in bars_7]
['A major 7th', 'A major 7th', 'A major 7th', 'A major 7th', 'D major 7th', 'D major 7th', 'A major 7th', 'A major 7th', 'E dominant 7th', 'D major 7th', 'A major 7th', 'E dominant 7th']

Or use the built-in named progression:

>>> key = Key("A", "major")
>>> blues = key.common_progressions()["12-bar blues"]
>>> [c.identify() for c in blues]
['A major', 'A major', 'A major', 'A major', 'D major', 'D major', 'A major', 'A major', 'E major', 'D major', 'A major', 'E major']

Blues Scale on the Fretboard

Visualize the blues scale on guitar to see the patterns:

>>> from pytheory import Fretboard, TonedScale

>>> fb = Fretboard.guitar()
>>> blues = TonedScale(tonic="A4", system="blues")["blues"]
>>> print(fb.scale_diagram(blues, frets=12))
    0   1   2   3   4   5   6   7   8   9  10  11  12
E| E | - | - | G | - | A | - | - | C | - | D | Eb| E |
A| A | - | - | C | - | D | Eb| E | - | - | G | - | A |
D| D | Eb| E | - | - | G | - | A | - | - | C | - | D |
G| G | - | A | - | - | C | - | D | Eb| E | - | - | G |
B| - | C | - | D | Eb| E | - | - | G | - | A | - | - |
E| E | - | - | G | - | A | - | - | C | - | D | Eb| E |

The minor pentatonic (same scale without the Eb) is the most-played scale in rock guitar. Add the blue note and you have the full blues scale — the same shapes, one extra fret.

Tablature

Tablature (tab) shows where to put your fingers rather than what notes to play. Each line represents a string; numbers indicate fret positions. PyTheory generates tabs at three levels:

  1. Chord tabs — single chord fingerings

  2. Part tabs — full melody/sequence notation

  3. Score tabs — extract a part from a multi-part score

Chord Tablature

Get the tab for any chord on any instrument:

>>> from pytheory import Fretboard

>>> fb = Fretboard.guitar()
>>> print(fb.tab("C"))
C major
e|--0--
B|--1--
G|--0--
D|--2--
A|--3--
E|--x--

>>> print(fb.tab("Am"))
A minor
e|--0--
B|--1--
G|--2--
D|--2--
A|--0--
E|--x--

>>> print(fb.tab("E7"))
E dominant 7th
e|--0--
B|--0--
G|--1--
D|--0--
A|--2--
E|--0--

Works with any instrument:

>>> uke = Fretboard.ukulele()
>>> print(uke.tab("C"))
C major
A|--3--
E|--0--
C|--0--
G|--0--

fb.tab accepts any chord symbol PyTheory can parse — see Working with Chords for the full vocabulary, and Instruments and Fingerings for chord charts, voicings, and the complete list of instruments.

Reading Tab Notation

e|--0--    ← open string (don't fret, just pluck)
B|--1--    ← press fret 1
G|--0--    ← open string
D|--2--    ← press fret 2
A|--3--    ← press fret 3
E|--x--    ← muted (don't play this string)
  • Each line is a string. Chord tab from fb.tab() uses the standard tab orientation — the highest-pitched string (high e) on top and the low E on the bottom. This layout is fixed regardless of the fretboard’s high_to_low data orientation.

  • Numbers are fret positions (0 = open, 1-24 = fretted)

  • x means the string is muted / not played

  • | marks measure boundaries in sequence tabs

Part Tablature

Generate tab from a composed part with to_tab():

>>> from pytheory import Score, Duration

>>> score = Score("4/4", bpm=120)
>>> lead = score.part("lead", synth="saw")

>>> # The A blues scale, ascending
>>> for note in ["A4", "C5", "D5", "Eb5", "E5", "G5", "A5"]:
...     lead.add(note, Duration.QUARTER)

>>> print(lead.to_tab())
e|-5--8--10-11|-12-15-17|
B|------------|---------|
G|------------|---------|
D|------------|---------|
A|------------|---------|
E|------------|---------|

Each note is mapped to the most playable string and fret, with | marking measure boundaries — here all seven notes sit on the high E string. See Sequencing for building parts and scores in depth.

Tuning Options

to_tab() takes a tuning keyword — one of the built-in strings, any Fretboard object, or a list of MIDI note numbers:

# Standard guitar (default)
lead.to_tab(tuning="guitar")

# 4-string bass
lead.to_tab(tuning="bass")

# Drop D guitar
lead.to_tab(tuning="drop_d")

# Any Fretboard object — pick from the 25 instrument presets
from pytheory import Fretboard
lead.to_tab(tuning=Fretboard.mandolin())
lead.to_tab(tuning=Fretboard.banjo())

# Custom tuning as MIDI note numbers (low string first)
lead.to_tab(tuning=[40, 45, 50, 55, 59, 64])

Notes outside an instrument’s range simply don’t appear, so a high lead line tabbed for bass may come up empty. See Instruments and Fingerings for the full instrument list.

Score Tablature

Extract tab for any part of a multi-part score with to_tab():

>>> from pytheory import Score, Key, TonedScale, Duration

>>> score = Score("4/4", bpm=120)
>>> rhythm = score.part("rhythm", synth="saw")
>>> lead = score.part("lead", synth="triangle")

>>> for chord in Key("E", "major").nashville("17", "47", "17", "57"):
...     rhythm.add(chord, Duration.WHOLE)

>>> for tone in TonedScale(tonic="E4", system="blues")["minor pentatonic"].tones:
...     lead.add(tone, Duration.QUARTER)

>>> # Tab a named part — the single-note melody
>>> print(score.to_tab("lead"))
e|-0--3--5--7-|-10-12|
B|------------|------|
G|------------|------|
D|------------|------|
A|------------|------|
E|------------|------|

>>> # With no name, the first non-drum part is tabbed — here the rhythm chords
>>> print(score.to_tab())
e|-0-|-5-|-0-|-7-||
B|-9-|-14|-9-|-16||
G|-16|-21|-16|-23||
D|---|---|---|---||
A|---|---|---|---||
E|---|---|---|---||

Any to_tab() keyword passes straight through, so score.to_tab("bass", tuning="bass") tabs a bass part in bass tuning.

Scalable Diagrams (SVG and PNG)

ASCII tab is perfect for the terminal, but for slides, worksheets, or video you’ll want crisp vector graphics. Every ASCII view has a scalable counterpart that renders to SVG (no dependencies) or PNG (install the diagrams extra: pip install pytheory[diagrams]). Each method returns the image as a string, or writes the file you name and returns its path:

>>> from pytheory import Fretboard, TonedScale

>>> fb = Fretboard.guitar()

>>> # A chord box — the graphical counterpart of fb.tab("Am")
>>> fb.tab_image("Am", "Am.svg")
'Am.svg'

>>> # The five positional boxes of a pentatonic scale
>>> scale = TonedScale(tonic="A4", system="blues")["minor pentatonic"]
>>> shapes = fb.scale_shapes(scale)
>>> len(shapes)
5
>>> shapes[0].to_svg(path="A_pent_pos1.svg")
'A_pent_pos1.svg'

>>> # Where a chord's tones fall across the neck, labelled R/3/5/7
>>> fb.arpeggio_diagram("Am", "Am_arp.svg")
'Am_arp.svg'

These mirror the ASCII tab() and scale_diagram() you’ve already seen, in a format you can drop straight into a document. See Instruments and Fingerings for the full diagram toolkit.

Putting It All Together

Here’s a complete example that uses all three features — Nashville numbers for the chord progression, the blues scale for the melody, and tab export to see the fingering:

from pytheory import Key, TonedScale, Fretboard, Score, Duration

# 1. Nashville numbers for the progression
key = Key("A", "major")
chords = key.nashville(1, 1, 1, 1, 4, 4, 1, 1, 5, 4, 1, 5)

# 2. Blues scale for the melody
blues = TonedScale(tonic="A4", system="blues")["blues"]

# 3. Compose a score
score = Score("4/4", bpm=120)
rhythm = score.part("rhythm", synth="saw", envelope="pad")
lead = score.part("lead", synth="triangle", envelope="pluck")

for chord in chords:
    rhythm.add(chord, Duration.WHOLE)

for tone in blues.tones[:-1]:  # walk up one octave of the blues scale
    lead.add(tone, Duration.HALF)

# 4. See it as tablature
print(lead.to_tab())

# 5. See the scale on the fretboard
fb = Fretboard.guitar()
print(fb.scale_diagram(blues, frets=12))

Nashville numbers tell you what chords to play. The blues scale tells you what notes to solo with. Tablature tells you where to put your fingers. Together, they’re everything you need to play the blues.