|
| 1 | +#!/usr/bin/python3 |
| 2 | + |
| 3 | +"""Predefined Variables for all ASCII letters""" |
| 4 | + |
| 5 | +from string import ascii_letters |
| 6 | +from . import Variable |
| 7 | + |
| 8 | +__all__ = tuple(ascii_letters) |
| 9 | + |
| 10 | +# better IDE autocompletion |
| 11 | +a, b, c, d, e, f, g, h, i, j = map(Variable, "abcdefghij") |
| 12 | +k, l, m, n, o, p, q, r, s, t = map(Variable, "klmnopqrst") |
| 13 | +u, v, w, x, y, z = map(Variable, "uvwxyz") |
| 14 | + |
| 15 | +A, B, C, D, E, F, G, H, I, J = map(Variable, "ABCDEFGHIJ") |
| 16 | +K, L, M, N, O, P, Q, R, S, T = map(Variable, "KLMNOPQRST") |
| 17 | +U, V, W, X, Y, Z = map(Variable, "UVWXYZ") |
0 commit comments