1973–74 Serie B
The Serie B 1973–74 was the forty-second tournament of this competition played in Italy since its creation.
![]() 1973–74 Varese squad | |
Season | 1973–74 |
---|---|
Champions | Varese 3rd title |
← 1972–73 1974–75 → |
Teams
Parma, SPAL and Avellino had been promoted from Serie C, while Atalanta, Palermo and Ternana had been relegated from Serie A.
Final classification
Pos | Team | Pld | W | D | L | GF | GA | GD | Pts | Promotion or relegation |
---|---|---|---|---|---|---|---|---|---|---|
1 | Varese (P, C) | 38 | 18 | 15 | 5 | 51 | 28 | +23 | 51 | 1974–75 Serie A |
2 | Ascoli (P) | 38 | 16 | 19 | 3 | 41 | 22 | +19 | 51 | |
3 | Ternana (P) | 38 | 18 | 14 | 6 | 46 | 20 | +26 | 50 | |
4 | Como | 38 | 15 | 16 | 7 | 37 | 27 | +10 | 46 | |
5 | Parma | 38 | 10 | 19 | 9 | 39 | 32 | +7 | 39 | |
6 | Taranto | 38 | 11 | 17 | 10 | 27 | 26 | +1 | 39 | |
7 | Palermo | 38 | 9 | 21 | 8 | 35 | 42 | −7 | 39 | |
8 | Novara | 38 | 12 | 14 | 12 | 33 | 34 | −1 | 38 | |
9 | S.P.A.L. | 38 | 11 | 16 | 11 | 29 | 32 | −3 | 38 | |
10 | Arezzo | 38 | 12 | 13 | 13 | 42 | 41 | +1 | 37 | |
11 | Atalanta | 38 | 11 | 14 | 13 | 24 | 24 | 0 | 36 | |
12 | Brescia | 38 | 10 | 16 | 12 | 35 | 36 | −1 | 36 | |
13 | Catanzaro | 38 | 11 | 13 | 14 | 31 | 37 | −6 | 35 | |
14 | Avellino | 38 | 11 | 13 | 14 | 34 | 39 | −5 | 35 | |
15 | Perugia | 38 | 10 | 14 | 14 | 30 | 31 | −1 | 34 | |
16 | Reggiana | 38 | 9 | 16 | 13 | 30 | 37 | −7 | 34 | |
17 | Brindisi | 38 | 8 | 18 | 12 | 27 | 37 | −10 | 34 | |
18 | Reggina (R) | 38 | 10 | 14 | 14 | 20 | 34 | −14 | 34 | 1974–75 Serie C[lower-alpha 1] |
19 | Bari (R) | 38 | 9 | 10 | 19 | 12 | 26 | −14 | 28 | |
20 | Catania (R) | 38 | 5 | 16 | 17 | 21 | 39 | −18 | 26 |
Source: Panini
(C) Champion; (P) Promoted; (R) Relegated.
Notes:
(C) Champion; (P) Promoted; (R) Relegated.
Notes:
- Reggina relegated for goal difference.
Results
References and sources
- Almanacco Illustrato del Calcio - La Storia 1898-2004, Panini Edizioni, Modena, September 2005
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.