Web scraping with Python

Python permet de facilement récupérer une page web pour en extraire des données à restructurer. Le web scraping, que les Canadiens nomment “moissonnage du web”, est une manière de plus en plus utilisée de récupérer une grande masse d’information en temps réel. Ce chapitre présente les deux principaux paradigmes par le biais de BeautifulSoup et Selenium et les principaux défis du web scraping.

Exercice
Manipulation
Author

Lino Galiana

Published

2025-03-19

If you want to try the examples in this tutorial:
View on GitHub Onyxia Onyxia Open In Colab

Web scraping refers to techniques for extracting content from websites. It is a very useful practice for anyone looking to work with information available online, but not necessarily in the form of an Excel table.

This chapter introduces you to how to create and run bots to quickly retrieve useful information for your current or future projects. It starts with some concrete use cases. This chapter is heavily inspired and adapted from Xavier Dupré’s work, the former professor of the subject.

1 Issues

A number of issues related to web scraping will only be briefly mentioned in this chapter.

1.2 Stability and Reliability of Retrieved Information

Data retrieval through web scraping is certainly practical, but it does not necessarily align with the intended or desired use by a data provider. Since data is costly to collect and make available, some sites may not necessarily want it to be extracted freely and easily. Especially when the data could provide a competitor with commercially useful information (e.g., the price of a competing product).

As a result, companies often implement strategies to block or limit the amount of data scraped. The most common method is detecting and blocking requests made by bots rather than humans. For specialized entities, this detection is quite easy because numerous indicators can identify whether a website visit comes from a human user behind a browser or a bot. To mention just a few clues: browsing speed between pages, speed of data extraction, fingerprinting of the browser used, ability to answer random questions (captcha)…

The best practices mentioned later aim to ensure that a bot behaves civilly by adopting behavior close to that of a human without pretending to be one.

It’s also essential to be cautious about the information received through web scraping. Since data is central to some business models, some companies don’t hesitate to send false data to bots rather than blocking them. It’s fair play! Another trap technique is called the honey pot. These are pages that a human would never visit—for example, because they don’t appear in the graphical interface—but where a bot, automatically searching for content, might get stuck.

Without resorting to the strategy of blocking web scraping, other reasons can explain why a data retrieval that worked in the past may no longer work. The most frequent reason is a change in the structure of a website. Web scraping has the disadvantage of retrieving information from a very hierarchical structure. A change in this structure can make a bot incapable of retrieving content. Moreover, to remain attractive, websites frequently change, which can easily render a bot inoperative.

In general, one of the key takeaways from this chapter is that web scraping is a last resort solution for occasional data retrieval without any guarantee of future functionality. It is preferable to favor APIs when they are available. The latter resemble a contract (formal or not) between a data provider and a user, where needs (the data) and access conditions (number of requests, volume, authentication…) are defined, whereas web scraping is more akin to behavior in the Wild West.

1.3 Best Practices

The ability to retrieve data through a bot does not mean one can afford to be uncivilized. Indeed, when uncontrolled, web scraping can resemble a classic cyberattack aimed at taking down a website: a denial of service. The course by Antoine Palazzolo reviews some best practices that have emerged in the scraping community. It is recommended to read this resource to learn more about this topic. Several conventions are discussed, including:

  • Navigate from the site’s root to the robots.txt file to check the guidelines provided by the website’s developers to regulate the behavior of bots;
  • Space out each request by several seconds, as a human would, to avoid overloading the website and causing it to crash due to a denial of service;
  • Make requests during the website’s off-peak hours if it is not an internationally accessed site. For example, for a French-language site, running the bot during the night in metropolitan France is a good practice. To run a bot from Python at a pre-scheduled time, there are cronjobs.

2 A Detour to the Web: How Does a Website Work?

Even though this lab doesn’t aim to provide a web course, you still need some basics on how a website works to understand how information is structured on a page.

A website is a collection of pages coded in HTML that describe both the content and the layout of a Web page.

To see this, open any web page and right-click on it.

  • On Chrome : Then click on “View page source” (CTRL+U);
  • On Firefox : “View Page Source” (CTRL+SHIFT+K);
  • On Edge : “View page source” (CTRL+U);
  • On Safari : see how to do it here.

If you know which element interests you, you can also open the browser’s inspector (right-click on the element + “Inspect”) to display the tags surrounding your element more ergonomically, like a zoom.

2.1 Tags

On a web page, you will always find elements like <head>, <title>, etc. These are the codes that allow you to structure the content of an HTML page and are called tags. For example, tags include <p>, <h1>, <h2>, <h3>, <strong>, or <em>. The symbol < > is a tag: it indicates the beginning of a section. The symbol </ > indicates the end of that section. Most tags come in pairs, with an opening tag and a closing tag (e.g., <p> and </p>).

For example, the main tags defining the structure of a table are as follows:

Tag Description
<table> Table
<caption> Table title
<tr> Table row
<th> Header cell
<td> Cell
<thead> Table header section
<tbody> Table body section
<tfoot> Table footer section

2.1.1 Application: A Table in HTML

The HTML code for the following table:

<table>
<caption> Le Titre de mon tableau </caption>

   <tr>
      <th>Prénom</th>
      <th>Nom</th>
      <th>Profession</th>
   </tr>
   <tr>
      <td>Mike </td>
      <td>Stuntman</td>
      <td>Cascadeur</td>
   </tr>
   <tr>
      <td>Mister</td>
      <td>Pink</td>
      <td>Gangster</td>
   </tr>
</table>

Donnera dans le navigateur :

Le Titre de mon tableau
Prénom Nom Profession
Mike Stuntman Cascadeur
Mister Pink Gangster

2.1.2 Parent and Child

In the context of HTML language, the terms parent (parent) and child (child) are used to refer to elements nested within each other. In the following construction, for example:

<div>
    <p>
       bla,bla
    </p>
</div>

On the web page, it will appear as follows:

bla,bla

One would say that the <div> element is the parent of the <p> element, while the <p> element is the child of the <div> element.

But why learn this for “scraping”?

Because to effectively retrieve information from a website, you need to understand its structure and, therefore, its HTML code. The Python functions used for scraping are primarily designed to help you navigate between tags. With Python, you will essentially replicate your manual search behavior to automate it.

3 Scraping with Python: The BeautifulSoup Package

3.1 Available Packages

In the first part of this chapter, we will primarily use the BeautifulSoup4 package, in conjunction with requests. The latter package allow you to retrieve the raw text of a page, which will then be inspected via BeautifulSoup4.

BeautifulSoup will suffice when you want to work on static HTML pages. As soon as the information you are looking for is generated via the execution of JavaScript scripts, you will need to use tools like Selenium.

Similarly, if you don’t know the URL, you’ll need to use a framework like Scrapy, which easily navigates from one page to another. This technique is called “web crawling”. Scrapy is more complex to handle than BeautifulSoup: if you want more details, visit the Scrapy tutorial page.

Web scraping is an area where reproducibility is difficult to implement. A web page may evolve regularly, and from one web page to another, the structure can be very different, making some code difficult to export. Therefore, the best way to have a functional program is to understand the structure of a web page and distinguish the elements that can be exported to other use cases from ad hoc requests.

!pip install lxml
!pip install bs4
Note

To be able to use Selenium, it is necessary to make Python communicate with a web browser (Firefox or Chromium). The webdriver-manager package allows Python to know where this browser is located if it is already installed in a standard path. To install it, the code in the cell below can be used.

To run Selenium, you need to use a package called webdriver-manager. So, we’ll install it, along with selenium:

!pip install selenium
!pip install webdriver-manager

3.2 Retrieve the Content of an HTML Page

Let’s start slowly. Let’s take a Wikipedia page, for example, the one for the 2019-2020 Ligue 1 football season: 2019-2020 Championnat de France de football. We will want to retrieve the list of teams, as well as the URLs of the Wikipedia pages for these teams.

Step 1️⃣: Connect to the Wikipedia page and obtain the source code. For this, the simplest way is to use the requests package. This allows Python to make the appropriate HTTP request to obtain the content of a page from its URL:

import requests
url_ligue_1 = "https://fr.wikipedia.org/wiki/Championnat_de_France_de_football_2019-2020"

request_text = requests.get(url_ligue_1).content
request_text
b'<!DOCTYPE html>\n<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available" lang="fr" dir="ltr">\n<head>\n<meta charset="UTF-8">\n<title>Championnat de France de football 2019-2020 \xe2\x80\x94 Wikip\xc3\xa9dia</title>\n<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available";var cookie=document.cookie.match(/(?:^|; )frwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split(\'%2C\').forEach(function(pref){className=className.replace(new RegExp(\'(^| )\'+pref.replace(/-clientpref-\\w+$|[^\\w-]+/g,\'\')+\'-clientpref-\\\\w+( |$)\'),\'$1\'+pref+\'$2\');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":[",\\t.","\xc2\xa0\\t,"],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","janvier","f\xc3\xa9vrier","mars","avril","mai","juin","juillet","ao\xc3\xbbt","septembre","octobre","novembre","d\xc3\xa9cembre"],"wgRequestId":"fef44855-898f-4d7f-a388-28dd139b40c1","wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Championnat_de_France_de_football_2019-2020","wgTitle":"Championnat de France de football 2019-2020","wgCurRevisionId":223938410,"wgRevisionId":223938410,"wgArticleId":12518858,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Page utilisant une frise chronologique","Article contenant un lien mort","Article utilisant une Infobox","Portail:Football/Articles li\xc3\xa9s","Portail:Sport/Articles li\xc3\xa9s","Portail:France/Articles li\xc3\xa9s","Portail:Europe/Articles li\xc3\xa9s","Portail:Monaco/Articles li\xc3\xa9s","Portail:Ann\xc3\xa9es 2010/Articles li\xc3\xa9s","Portail:XXIe si\xc3\xa8cle/Articles li\xc3\xa9s","Portail:\xc3\x89poque contemporaine/Articles li\xc3\xa9s","Portail:Ann\xc3\xa9es 2020/Articles li\xc3\xa9s","Championnat de France de football 2019-2020","Championnat national de football 2019-2020"],"wgPageViewLanguage":"fr","wgPageContentLanguage":"fr","wgPageContentModel":"wikitext","wgRelevantPageName":"Championnat_de_France_de_football_2019-2020","wgRelevantArticleId":12518858,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgNoticeProject":"wikipedia","wgCiteReferencePreviewsActive":true,"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"fr","pageLanguageDir":"ltr","pageVariantFallbacks":"fr"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":true,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":100000,"wgEditSubmitButtonLabelPublish":true,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q61862323","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness","fullVersionList","mobile","model","platform","platformVersion"],"GEHomepageSuggestedEditsEnableTopics":true,"wgGETopicsMatchModeEnabled":false,"wgGEStructuredTaskRejectionReasonTextInputEnabled":false,"wgGELevelingUpEnabledForUser":false};\nRLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.cite.styles":"ready","ext.timeline.styles":"ready","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.tablesorter.styles":"ready","ext.wikimediamessages.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","site","mediawiki.page.ready","jquery.tablesorter","mediawiki.toc","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ArchiveLinks","ext.urlShortener.toolbar","ext.centralauth.centralautologin","mmv.bootstrap","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.cx.uls.quick.actions","wikibase.client.vector-2022","ext.checkUser.clientHints","ext.growthExperiments.SuggestedEditSession"];</script>\n<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\\\","watchToken":"+\\\\","csrfToken":"+\\\\"});\n}];});});</script>\n<link rel="stylesheet" href="/w/load.php?lang=fr&amp;modules=ext.cite.styles%7Cext.timeline.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediamessages.styles%7Cjquery.tablesorter.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&amp;only=styles&amp;skin=vector-2022">\n<script async="" src="/w/load.php?lang=fr&amp;modules=startup&amp;only=scripts&amp;raw=1&amp;skin=vector-2022"></script>\n<meta name="ResourceLoaderDynamicStyles" content="">\n<link rel="stylesheet" href="/w/load.php?lang=fr&amp;modules=site.styles&amp;only=styles&amp;skin=vector-2022">\n<meta name="generator" content="MediaWiki 1.44.0-wmf.20">\n<meta name="referrer" content="origin">\n<meta name="referrer" content="origin-when-cross-origin">\n<meta name="robots" content="max-image-preview:standard">\n<meta name="format-detection" content="telephone=no">\n<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/fr/thumb/1/14/Ligue_1_Conforama.svg/1200px-Ligue_1_Conforama.svg.png">\n<meta property="og:image:width" content="1200">\n<meta property="og:image:height" content="1653">\n<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/fr/thumb/1/14/Ligue_1_Conforama.svg/800px-Ligue_1_Conforama.svg.png">\n<meta property="og:image:width" content="800">\n<meta property="og:image:height" content="1102">\n<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/fr/thumb/1/14/Ligue_1_Conforama.svg/640px-Ligue_1_Conforama.svg.png">\n<meta property="og:image:width" content="640">\n<meta property="og:image:height" content="882">\n<meta name="viewport" content="width=1120">\n<meta property="og:title" content="Championnat de France de football 2019-2020 \xe2\x80\x94 Wikip\xc3\xa9dia">\n<meta property="og:type" content="website">\n<link rel="preconnect" href="//upload.wikimedia.org">\n<link rel="alternate" media="only screen and (max-width: 640px)" href="//fr.m.wikipedia.org/wiki/Championnat_de_France_de_football_2019-2020">\n<link rel="alternate" type="application/x-wiki" title="Modifier" href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit">\n<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png">\n<link rel="icon" href="/static/favicon/wikipedia.ico">\n<link rel="search" type="application/opensearchdescription+xml" href="/w/rest.php/v1/search" title="Wikip\xc3\xa9dia (fr)">\n<link rel="EditURI" type="application/rsd+xml" href="//fr.wikipedia.org/w/api.php?action=rsd">\n<link rel="canonical" href="https://fr.wikipedia.org/wiki/Championnat_de_France_de_football_2019-2020">\n<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.fr">\n<link rel="alternate" type="application/atom+xml" title="Flux Atom de Wikip\xc3\xa9dia" href="/w/index.php?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&amp;feed=atom">\n<link rel="dns-prefetch" href="//meta.wikimedia.org" />\n<link rel="dns-prefetch" href="login.wikimedia.org">\n</head>\n<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-Championnat_de_France_de_football_2019-2020 rootpage-Championnat_de_France_de_football_2019-2020 skin-vector-2022 action-view"><a class="mw-jump-link" href="#bodyContent">Aller au contenu</a>\n<div class="vector-header-container">\n\t<header class="vector-header mw-header">\n\t\t<div class="vector-header-start">\n\t\t\t<nav class="vector-main-menu-landmark" aria-label="Site">\n\t\t\t\t\n<div id="vector-main-menu-dropdown" class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right"  title="Menu principal" >\n\t<input type="checkbox" id="vector-main-menu-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-main-menu-dropdown" class="vector-dropdown-checkbox "  aria-label="Menu principal"  >\n\t<label id="vector-main-menu-dropdown-label" for="vector-main-menu-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span>\n\n<span class="vector-dropdown-label-text">Menu principal</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\n\t\t\t\t<div id="vector-main-menu-unpinned-container" class="vector-unpinned-container">\n\t\t\n<div id="vector-main-menu" class="vector-main-menu vector-pinnable-element">\n\t<div\n\tclass="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned"\n\tdata-feature-name="main-menu-pinned"\n\tdata-pinnable-element-id="vector-main-menu"\n\tdata-pinned-container-id="vector-main-menu-pinned-container"\n\tdata-unpinned-container-id="vector-main-menu-unpinned-container"\n>\n\t<div class="vector-pinnable-header-label">Menu principal</div>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">d\xc3\xa9placer vers la barre lat\xc3\xa9rale</button>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">masquer</button>\n</div>\n\n\t\n<div id="p-navigation" class="vector-menu mw-portlet mw-portlet-navigation"  >\n\t<div class="vector-menu-heading">\n\t\tNavigation\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="n-mainpage-description" class="mw-list-item"><a href="/wiki/Wikip%C3%A9dia:Accueil_principal" title="Accueil g\xc3\xa9n\xc3\xa9ral [z]" accesskey="z"><span>Accueil</span></a></li><li id="n-thema" class="mw-list-item"><a href="/wiki/Portail:Accueil"><span>Portails th\xc3\xa9matiques</span></a></li><li id="n-randompage" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Page_au_hasard" title="Affiche un article au hasard [x]" accesskey="x"><span>Article au hasard</span></a></li><li id="n-contact" class="mw-list-item"><a href="/wiki/Wikip%C3%A9dia:Contact"><span>Contact</span></a></li><li id="n-specialpages" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Pages_sp%C3%A9ciales"><span>Pages sp\xc3\xa9ciales</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\n\t\n<div id="p-Contribuer" class="vector-menu mw-portlet mw-portlet-Contribuer"  >\n\t<div class="vector-menu-heading">\n\t\tContribuer\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="n-aboutwp" class="mw-list-item"><a href="/wiki/Aide:D%C3%A9buter"><span>D\xc3\xa9buter sur Wikip\xc3\xa9dia</span></a></li><li id="n-help" class="mw-list-item"><a href="/wiki/Aide:Accueil" title="Acc\xc3\xa8s \xc3\xa0 l\xe2\x80\x99aide"><span>Aide</span></a></li><li id="n-portal" class="mw-list-item"><a href="/wiki/Wikip%C3%A9dia:Accueil_de_la_communaut%C3%A9" title="\xc3\x80 propos du projet, ce que vous pouvez faire, o\xc3\xb9 trouver les informations"><span>Communaut\xc3\xa9</span></a></li><li id="n-recentchanges" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications r\xc3\xa9centes sur le wiki [r]" accesskey="r"><span>Modifications r\xc3\xa9centes</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n</div>\n\n\t\t\t\t</div>\n\n\t</div>\n</div>\n\n\t\t</nav>\n\t\t\t\n<a href="/wiki/Wikip%C3%A9dia:Accueil_principal" class="mw-logo">\n\t<img class="mw-logo-icon" src="/static/images/icons/wikipedia.png" alt="" aria-hidden="true" height="50" width="50">\n\t<span class="mw-logo-container skin-invert">\n\t\t<img class="mw-logo-wordmark" alt="Wikip\xc3\xa9dia" src="/static/images/mobile/copyright/wikipedia-wordmark-fr.svg" style="width: 7.4375em; height: 1.125em;">\n\t\t<img class="mw-logo-tagline" alt="l&#039;encyclop\xc3\xa9die libre" src="/static/images/mobile/copyright/wikipedia-tagline-fr.svg" width="120" height="13" style="width: 7.5em; height: 0.8125em;">\n\t</span>\n</a>\n\n\t\t</div>\n\t\t<div class="vector-header-end">\n\t\t\t\n<div id="p-search" role="search" class="vector-search-box-vue  vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">\n\t<a href="/wiki/Sp%C3%A9cial:Recherche" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" title="Rechercher sur Wikip\xc3\xa9dia [f]" accesskey="f"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span>\n\n<span>Rechercher</span>\n\t</a>\n\t<div class="vector-typeahead-search-container">\n\t\t<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">\n\t\t\t<form action="/w/index.php" id="searchform" class="cdx-search-input cdx-search-input--has-end-button">\n\t\t\t\t<div id="simpleSearch" class="cdx-search-input__input-wrapper"  data-search-loc="header-moved">\n\t\t\t\t\t<div class="cdx-text-input cdx-text-input--has-start-icon">\n\t\t\t\t\t\t<input\n\t\t\t\t\t\t\tclass="cdx-text-input__input"\n\t\t\t\t\t\t\t type="search" name="search" placeholder="Rechercher sur Wikip\xc3\xa9dia" aria-label="Rechercher sur Wikip\xc3\xa9dia" autocapitalize="sentences" title="Rechercher sur Wikip\xc3\xa9dia [f]" accesskey="f" id="searchInput"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>\n\t\t\t\t\t</div>\n\t\t\t\t\t<input type="hidden" name="title" value="Sp\xc3\xa9cial:Recherche">\n\t\t\t\t</div>\n\t\t\t\t<button class="cdx-button cdx-search-input__end-button">Rechercher</button>\n\t\t\t</form>\n\t\t</div>\n\t</div>\n</div>\n\n\t\t\t<nav class="vector-user-links vector-user-links-wide" aria-label="Outils personnels">\n\t<div class="vector-user-links-main">\n\t\n<div id="p-vector-user-menu-preferences" class="vector-menu mw-portlet emptyPortlet"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\n<div id="p-vector-user-menu-userpage" class="vector-menu mw-portlet emptyPortlet"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t<nav class="vector-appearance-landmark" aria-label="Apparence">\n\t\t\n<div id="vector-appearance-dropdown" class="vector-dropdown "  title="Modifier l&#039;apparence de la taille, de la largeur et de la couleur de la police de la page" >\n\t<input type="checkbox" id="vector-appearance-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-appearance-dropdown" class="vector-dropdown-checkbox "  aria-label="Apparence"  >\n\t<label id="vector-appearance-dropdown-label" for="vector-appearance-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span>\n\n<span class="vector-dropdown-label-text">Apparence</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\n\t\t\t<div id="vector-appearance-unpinned-container" class="vector-unpinned-container">\n\t\t\t\t\n\t\t\t</div>\n\t\t\n\t</div>\n</div>\n\n\t</nav>\n\t\n<div id="p-vector-user-menu-notifications" class="vector-menu mw-portlet emptyPortlet"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\n<div id="p-vector-user-menu-overflow" class="vector-menu mw-portlet"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t<li id="pt-sitesupport-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="https://donate.wikimedia.org/?wmf_source=donate&amp;wmf_medium=sidebar&amp;wmf_campaign=fr.wikipedia.org&amp;uselang=fr" class=""><span>Faire un don</span></a>\n</li>\n<li id="pt-createaccount-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Sp%C3%A9cial:Cr%C3%A9er_un_compte&amp;returnto=Championnat+de+France+de+football+2019-2020" title="Nous vous encourageons \xc3\xa0 cr\xc3\xa9er un compte utilisateur et vous connecter\xe2\x80\xaf; ce n\xe2\x80\x99est cependant pas obligatoire." class=""><span>Cr\xc3\xa9er un compte</span></a>\n</li>\n<li id="pt-login-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Sp%C3%A9cial:Connexion&amp;returnto=Championnat+de+France+de+football+2019-2020" title="Nous vous encourageons \xc3\xa0 vous connecter\xe2\x80\xaf; ce n\xe2\x80\x99est cependant pas obligatoire. [o]" accesskey="o" class=""><span>Se connecter</span></a>\n</li>\n\n\t\t\t\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t</div>\n\t\n<div id="vector-user-links-dropdown" class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out"  title="Plus d\xe2\x80\x99options" >\n\t<input type="checkbox" id="vector-user-links-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-user-links-dropdown" class="vector-dropdown-checkbox "  aria-label="Outils personnels"  >\n\t<label id="vector-user-links-dropdown-label" for="vector-user-links-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span>\n\n<span class="vector-dropdown-label-text">Outils personnels</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\n\t\t\n<div id="p-personal" class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item"  title="Menu utilisateur" >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="pt-sitesupport" class="user-links-collapsible-item mw-list-item"><a href="https://donate.wikimedia.org/?wmf_source=donate&amp;wmf_medium=sidebar&amp;wmf_campaign=fr.wikipedia.org&amp;uselang=fr"><span>Faire un don</span></a></li><li id="pt-createaccount" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:Cr%C3%A9er_un_compte&amp;returnto=Championnat+de+France+de+football+2019-2020" title="Nous vous encourageons \xc3\xa0 cr\xc3\xa9er un compte utilisateur et vous connecter\xe2\x80\xaf; ce n\xe2\x80\x99est cependant pas obligatoire."><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Cr\xc3\xa9er un compte</span></a></li><li id="pt-login" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:Connexion&amp;returnto=Championnat+de+France+de+football+2019-2020" title="Nous vous encourageons \xc3\xa0 vous connecter\xe2\x80\xaf; ce n\xe2\x80\x99est cependant pas obligatoire. [o]" accesskey="o"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Se connecter</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n<div id="p-user-menu-anon-editor" class="vector-menu mw-portlet mw-portlet-user-menu-anon-editor"  >\n\t<div class="vector-menu-heading">\n\t\tPages pour les contributeurs d\xc3\xa9connect\xc3\xa9s <a href="/wiki/Aide:Premiers_pas" aria-label="En savoir plus sur la contribution"><span>en savoir plus</span></a>\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="pt-anoncontribs" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Mes_contributions" title="Une liste des modifications effectu\xc3\xa9es depuis cette adresse IP [y]" accesskey="y"><span>Contributions</span></a></li><li id="pt-anontalk" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Mes_discussions" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n"><span>Discussion</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\n\t</div>\n</div>\n\n</nav>\n\n\t\t</div>\n\t</header>\n</div>\n<div class="mw-page-container">\n\t<div class="mw-page-container-inner">\n\t\t<div class="vector-sitenotice-container">\n\t\t\t<div id="siteNotice"><!-- CentralNotice --></div>\n\t\t</div>\n\t\t<div class="vector-column-start">\n\t\t\t<div class="vector-main-menu-container">\n\t\t<div id="mw-navigation">\n\t\t\t<nav id="mw-panel" class="vector-main-menu-landmark" aria-label="Site">\n\t\t\t\t<div id="vector-main-menu-pinned-container" class="vector-pinned-container">\n\t\t\t\t\n\t\t\t\t</div>\n\t\t</nav>\n\t\t</div>\n\t</div>\n\t<div class="vector-sticky-pinned-container">\n\t\t\t\t<nav id="mw-panel-toc" aria-label="Sommaire" data-event-name="ui.sidebar-toc" class="mw-table-of-contents-container vector-toc-landmark">\n\t\t\t\t\t<div id="vector-toc-pinned-container" class="vector-pinned-container">\n\t\t\t\t\t<div id="vector-toc" class="vector-toc vector-pinnable-element">\n\t<div\n\tclass="vector-pinnable-header vector-toc-pinnable-header vector-pinnable-header-pinned"\n\tdata-feature-name="toc-pinned"\n\tdata-pinnable-element-id="vector-toc"\n\t\n\t\n>\n\t<h2 class="vector-pinnable-header-label">Sommaire</h2>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-toc.pin">d\xc3\xa9placer vers la barre lat\xc3\xa9rale</button>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-toc.unpin">masquer</button>\n</div>\n\n\n\t<ul class="vector-toc-contents" id="mw-panel-toc-list">\n\t\t<li id="toc-mw-content-text"\n\t\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t\t<a href="#" class="vector-toc-link">\n\t\t\t\t<div class="vector-toc-text">D\xc3\xa9but</div>\n\t\t\t</a>\n\t\t</li>\n\t\t<li id="toc-Participants"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Participants">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">1</span>\n\t\t\t\t<span>Participants</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t\t<button aria-controls="toc-Participants-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">\n\t\t\t\t<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>\n\t\t\t\t<span>Afficher\xe2\x80\xaf/\xe2\x80\xafmasquer la sous-section Participants</span>\n\t\t\t</button>\n\t\t\n\t\t<ul id="toc-Participants-sublist" class="vector-toc-list">\n\t\t\t<li id="toc-Changements_d&#039;entra\xc3\xaeneur"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Changements_d&#039;entra\xc3\xaeneur">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">1.1</span>\n\t\t\t\t\t<span>Changements d\'entra\xc3\xaeneur</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Changements_d&#039;entra\xc3\xaeneur-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t</li>\n\t<li id="toc-Comp\xc3\xa9tition"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Comp\xc3\xa9tition">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">2</span>\n\t\t\t\t<span>Comp\xc3\xa9tition</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t\t<button aria-controls="toc-Comp\xc3\xa9tition-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">\n\t\t\t\t<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>\n\t\t\t\t<span>Afficher\xe2\x80\xaf/\xe2\x80\xafmasquer la sous-section Comp\xc3\xa9tition</span>\n\t\t\t</button>\n\t\t\n\t\t<ul id="toc-Comp\xc3\xa9tition-sublist" class="vector-toc-list">\n\t\t\t<li id="toc-R\xc3\xa8glement"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#R\xc3\xa8glement">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">2.1</span>\n\t\t\t\t\t<span>R\xc3\xa8glement</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-R\xc3\xa8glement-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Classement"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Classement">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">2.2</span>\n\t\t\t\t\t<span>Classement</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Classement-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Leader_par_journ\xc3\xa9e"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Leader_par_journ\xc3\xa9e">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">2.3</span>\n\t\t\t\t\t<span>Leader par journ\xc3\xa9e</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Leader_par_journ\xc3\xa9e-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Lanterne_rouge_par_journ\xc3\xa9e"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Lanterne_rouge_par_journ\xc3\xa9e">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">2.4</span>\n\t\t\t\t\t<span>Lanterne rouge par journ\xc3\xa9e</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Lanterne_rouge_par_journ\xc3\xa9e-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Matchs"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Matchs">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">2.5</span>\n\t\t\t\t\t<span>Matchs</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Matchs-sublist" class="vector-toc-list">\n\t\t\t\t<li id="toc-Barrages_de_rel\xc3\xa9gation"\n\t\t\tclass="vector-toc-list-item vector-toc-level-3">\n\t\t\t<a class="vector-toc-link" href="#Barrages_de_rel\xc3\xa9gation">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">2.5.1</span>\n\t\t\t\t\t<span>Barrages de rel\xc3\xa9gation</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Barrages_de_rel\xc3\xa9gation-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t\t</li>\n\t</ul>\n\t</li>\n\t<li id="toc-Statistiques"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Statistiques">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">3</span>\n\t\t\t\t<span>Statistiques</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t\t<button aria-controls="toc-Statistiques-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">\n\t\t\t\t<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>\n\t\t\t\t<span>Afficher\xe2\x80\xaf/\xe2\x80\xafmasquer la sous-section Statistiques</span>\n\t\t\t</button>\n\t\t\n\t\t<ul id="toc-Statistiques-sublist" class="vector-toc-list">\n\t\t\t<li id="toc-Domicile_et_ext\xc3\xa9rieur"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Domicile_et_ext\xc3\xa9rieur">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.1</span>\n\t\t\t\t\t<span>Domicile et ext\xc3\xa9rieur</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Domicile_et_ext\xc3\xa9rieur-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-\xc3\x89volution_du_classement"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#\xc3\x89volution_du_classement">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.2</span>\n\t\t\t\t\t<span>\xc3\x89volution du classement</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-\xc3\x89volution_du_classement-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Buts_marqu\xc3\xa9s_par_journ\xc3\xa9e"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Buts_marqu\xc3\xa9s_par_journ\xc3\xa9e">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.3</span>\n\t\t\t\t\t<span>Buts marqu\xc3\xa9s par journ\xc3\xa9e</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Buts_marqu\xc3\xa9s_par_journ\xc3\xa9e-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Classement_des_buteurs"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Classement_des_buteurs">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.4</span>\n\t\t\t\t\t<span>Classement des buteurs</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Classement_des_buteurs-sublist" class="vector-toc-list">\n\t\t\t\t<li id="toc-Leader_par_journ\xc3\xa9e_2"\n\t\t\tclass="vector-toc-list-item vector-toc-level-3">\n\t\t\t<a class="vector-toc-link" href="#Leader_par_journ\xc3\xa9e_2">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.4.1</span>\n\t\t\t\t\t<span>Leader par journ\xc3\xa9e</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Leader_par_journ\xc3\xa9e_2-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t\t</li>\n\t\t<li id="toc-Classement_des_passeurs"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Classement_des_passeurs">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.5</span>\n\t\t\t\t\t<span>Classement des passeurs</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Classement_des_passeurs-sublist" class="vector-toc-list">\n\t\t\t\t<li id="toc-Leader_par_journ\xc3\xa9e_3"\n\t\t\tclass="vector-toc-list-item vector-toc-level-3">\n\t\t\t<a class="vector-toc-link" href="#Leader_par_journ\xc3\xa9e_3">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.5.1</span>\n\t\t\t\t\t<span>Leader par journ\xc3\xa9e</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Leader_par_journ\xc3\xa9e_3-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t\t</li>\n\t\t<li id="toc-Affluence"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Affluence">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.6</span>\n\t\t\t\t\t<span>Affluence</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Affluence-sublist" class="vector-toc-list">\n\t\t\t\t<li id="toc-Meilleures_affluences_de_la_saison"\n\t\t\tclass="vector-toc-list-item vector-toc-level-3">\n\t\t\t<a class="vector-toc-link" href="#Meilleures_affluences_de_la_saison">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.6.1</span>\n\t\t\t\t\t<span>Meilleures affluences de la saison</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Meilleures_affluences_de_la_saison-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Affluences_par_journ\xc3\xa9e"\n\t\t\tclass="vector-toc-list-item vector-toc-level-3">\n\t\t\t<a class="vector-toc-link" href="#Affluences_par_journ\xc3\xa9e">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">3.6.2</span>\n\t\t\t\t\t<span>Affluences par journ\xc3\xa9e</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Affluences_par_journ\xc3\xa9e-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t\t</li>\n\t</ul>\n\t</li>\n\t<li id="toc-Bilan_de_la_saison"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Bilan_de_la_saison">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">4</span>\n\t\t\t\t<span>Bilan de la saison</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t<ul id="toc-Bilan_de_la_saison-sublist" class="vector-toc-list">\n\t\t</ul>\n\t</li>\n\t<li id="toc-Troph\xc3\xa9e_UNFP"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Troph\xc3\xa9e_UNFP">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">5</span>\n\t\t\t\t<span>Troph\xc3\xa9e UNFP</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t<ul id="toc-Troph\xc3\xa9e_UNFP-sublist" class="vector-toc-list">\n\t\t</ul>\n\t</li>\n\t<li id="toc-Parcours_en_Coupes_d&#039;Europe"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Parcours_en_Coupes_d&#039;Europe">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">6</span>\n\t\t\t\t<span>Parcours en Coupes d\'Europe</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t<ul id="toc-Parcours_en_Coupes_d&#039;Europe-sublist" class="vector-toc-list">\n\t\t</ul>\n\t</li>\n\t<li id="toc-Perturbations_lors_du_championnat"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Perturbations_lors_du_championnat">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">7</span>\n\t\t\t\t<span>Perturbations lors du championnat</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t\t<button aria-controls="toc-Perturbations_lors_du_championnat-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">\n\t\t\t\t<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>\n\t\t\t\t<span>Afficher\xe2\x80\xaf/\xe2\x80\xafmasquer la sous-section Perturbations lors du championnat</span>\n\t\t\t</button>\n\t\t\n\t\t<ul id="toc-Perturbations_lors_du_championnat-sublist" class="vector-toc-list">\n\t\t\t<li id="toc-Controverse_au_sujet_de_l&#039;homophobie"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Controverse_au_sujet_de_l&#039;homophobie">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">7.1</span>\n\t\t\t\t\t<span>Controverse au sujet de l\'homophobie</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Controverse_au_sujet_de_l&#039;homophobie-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-Matchs_repouss\xc3\xa9s"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Matchs_repouss\xc3\xa9s">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">7.2</span>\n\t\t\t\t\t<span>Matchs repouss\xc3\xa9s</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Matchs_repouss\xc3\xa9s-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t</li>\n\t<li id="toc-Arr\xc3\xaat_subit_de_la_comp\xc3\xa9tition"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Arr\xc3\xaat_subit_de_la_comp\xc3\xa9tition">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">8</span>\n\t\t\t\t<span>Arr\xc3\xaat subit de la comp\xc3\xa9tition</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t\t<button aria-controls="toc-Arr\xc3\xaat_subit_de_la_comp\xc3\xa9tition-sublist" class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-toc-toggle">\n\t\t\t\t<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>\n\t\t\t\t<span>Afficher\xe2\x80\xaf/\xe2\x80\xafmasquer la sous-section Arr\xc3\xaat subit de la comp\xc3\xa9tition</span>\n\t\t\t</button>\n\t\t\n\t\t<ul id="toc-Arr\xc3\xaat_subit_de_la_comp\xc3\xa9tition-sublist" class="vector-toc-list">\n\t\t\t<li id="toc-Chronologie"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#Chronologie">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">8.1</span>\n\t\t\t\t\t<span>Chronologie</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-Chronologie-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t\t<li id="toc-M\xc3\xa9thode_de_classement"\n\t\t\tclass="vector-toc-list-item vector-toc-level-2">\n\t\t\t<a class="vector-toc-link" href="#M\xc3\xa9thode_de_classement">\n\t\t\t\t<div class="vector-toc-text">\n\t\t\t\t\t<span class="vector-toc-numb">8.2</span>\n\t\t\t\t\t<span>M\xc3\xa9thode de classement</span>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<ul id="toc-M\xc3\xa9thode_de_classement-sublist" class="vector-toc-list">\n\t\t\t</ul>\n\t\t</li>\n\t</ul>\n\t</li>\n\t<li id="toc-Notes_et_r\xc3\xa9f\xc3\xa9rences"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Notes_et_r\xc3\xa9f\xc3\xa9rences">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">9</span>\n\t\t\t\t<span>Notes et r\xc3\xa9f\xc3\xa9rences</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t<ul id="toc-Notes_et_r\xc3\xa9f\xc3\xa9rences-sublist" class="vector-toc-list">\n\t\t</ul>\n\t</li>\n\t<li id="toc-Voir_aussi"\n\t\tclass="vector-toc-list-item vector-toc-level-1">\n\t\t<a class="vector-toc-link" href="#Voir_aussi">\n\t\t\t<div class="vector-toc-text">\n\t\t\t\t<span class="vector-toc-numb">10</span>\n\t\t\t\t<span>Voir aussi</span>\n\t\t\t</div>\n\t\t</a>\n\t\t\n\t\t<ul id="toc-Voir_aussi-sublist" class="vector-toc-list">\n\t\t</ul>\n\t</li>\n</ul>\n</div>\n\n\t\t\t\t\t</div>\n\t\t</nav>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class="mw-content-container">\n\t\t\t<main id="content" class="mw-body">\n\t\t\t\t<header class="mw-body-header vector-page-titlebar">\n\t\t\t\t\t<nav aria-label="Sommaire" class="vector-toc-landmark">\n\t\t\t\t\t\t\n<div id="vector-page-titlebar-toc" class="vector-dropdown vector-page-titlebar-toc vector-button-flush-left"  title="Table des mati\xc3\xa8res" >\n\t<input type="checkbox" id="vector-page-titlebar-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-titlebar-toc" class="vector-dropdown-checkbox "  aria-label="Basculer la table des mati\xc3\xa8res"  >\n\t<label id="vector-page-titlebar-toc-label" for="vector-page-titlebar-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span>\n\n<span class="vector-dropdown-label-text">Basculer la table des mati\xc3\xa8res</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\n\t\t\t\t\t\t\t<div id="vector-page-titlebar-toc-unpinned-container" class="vector-unpinned-container">\n\t\t\t</div>\n\t\t\n\t</div>\n</div>\n\n\t\t\t\t\t</nav>\n\t\t\t\t\t<h1 id="firstHeading" class="firstHeading mw-first-heading"><span class="mw-page-title-main">Championnat de France de football 2019-2020</span></h1>\n\t\t\t\t\t\t\t\n<div id="p-lang-btn" class="vector-dropdown mw-portlet mw-portlet-lang"  >\n\t<input type="checkbox" id="p-lang-btn-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-p-lang-btn" class="vector-dropdown-checkbox mw-interlanguage-selector" aria-label="Aller \xc3\xa0 un article dans une autre langue. Disponible en 27 langues."   >\n\t<label id="p-lang-btn-label" for="p-lang-btn-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-27" aria-hidden="true"  ><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span>\n\n<span class="vector-dropdown-label-text">27\xc2\xa0langues</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\t\t<div class="vector-menu-content">\n\t\t\t\n\t\t\t<ul class="vector-menu-content-list">\n\t\t\t\t\n\t\t\t\t<li class="interlanguage-link interwiki-ar mw-list-item"><a href="https://ar.wikipedia.org/wiki/%D8%A7%D9%84%D8%AF%D9%88%D8%B1%D9%8A_%D8%A7%D9%84%D9%81%D8%B1%D9%86%D8%B3%D9%8A_2019%E2%80%9320" title="\xd8\xa7\xd9\x84\xd8\xaf\xd9\x88\xd8\xb1\xd9\x8a \xd8\xa7\xd9\x84\xd9\x81\xd8\xb1\xd9\x86\xd8\xb3\xd9\x8a 2019\xe2\x80\x9320\xc2\xa0\xe2\x80\x93\xc2\xa0arabe" lang="ar" hreflang="ar" data-title="\xd8\xa7\xd9\x84\xd8\xaf\xd9\x88\xd8\xb1\xd9\x8a \xd8\xa7\xd9\x84\xd9\x81\xd8\xb1\xd9\x86\xd8\xb3\xd9\x8a 2019\xe2\x80\x9320" data-language-autonym="\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9" data-language-local-name="arabe" class="interlanguage-link-target"><span>\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9</span></a></li><li class="interlanguage-link interwiki-arz mw-list-item"><a href="https://arz.wikipedia.org/wiki/%D8%A7%D9%84%D8%AF%D9%88%D8%B1%D9%89_%D8%A7%D9%84%D9%81%D8%B1%D9%86%D8%B3%D9%89_2019%E2%80%9320" title="\xd8\xa7\xd9\x84\xd8\xaf\xd9\x88\xd8\xb1\xd9\x89 \xd8\xa7\xd9\x84\xd9\x81\xd8\xb1\xd9\x86\xd8\xb3\xd9\x89 2019\xe2\x80\x9320\xc2\xa0\xe2\x80\x93\xc2\xa0arabe \xc3\xa9gyptien" lang="arz" hreflang="arz" data-title="\xd8\xa7\xd9\x84\xd8\xaf\xd9\x88\xd8\xb1\xd9\x89 \xd8\xa7\xd9\x84\xd9\x81\xd8\xb1\xd9\x86\xd8\xb3\xd9\x89 2019\xe2\x80\x9320" data-language-autonym="\xd9\x85\xd8\xb5\xd8\xb1\xd9\x89" data-language-local-name="arabe \xc3\xa9gyptien" class="interlanguage-link-target"><span>\xd9\x85\xd8\xb5\xd8\xb1\xd9\x89</span></a></li><li class="interlanguage-link interwiki-be-x-old mw-list-item"><a href="https://be-tarask.wikipedia.org/wiki/%D0%9B%D1%96%D0%B3%D0%B0_1_%D1%87%D1%8D%D0%BC%D0%BF%D1%96%D1%8F%D0%BD%D0%B0%D1%82%D1%83_%D0%A4%D1%80%D0%B0%D0%BD%D1%86%D1%8B%D1%96_%D0%BF%D0%B0_%D1%84%D1%83%D1%82%D0%B1%D0%BE%D0%BB%D0%B5_2019%E2%80%942020_%D0%B3%D0%B0%D0%B4%D0%BE%D1%9E" title="\xd0\x9b\xd1\x96\xd0\xb3\xd0\xb0 1 \xd1\x87\xd1\x8d\xd0\xbc\xd0\xbf\xd1\x96\xd1\x8f\xd0\xbd\xd0\xb0\xd1\x82\xd1\x83 \xd0\xa4\xd1\x80\xd0\xb0\xd0\xbd\xd1\x86\xd1\x8b\xd1\x96 \xd0\xbf\xd0\xb0 \xd1\x84\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd0\xb5 2019\xe2\x80\x942020 \xd0\xb3\xd0\xb0\xd0\xb4\xd0\xbe\xd1\x9e\xc2\xa0\xe2\x80\x93\xc2\xa0Belarusian (Tara\xc5\xa1kievica orthography)" lang="be-tarask" hreflang="be-tarask" data-title="\xd0\x9b\xd1\x96\xd0\xb3\xd0\xb0 1 \xd1\x87\xd1\x8d\xd0\xbc\xd0\xbf\xd1\x96\xd1\x8f\xd0\xbd\xd0\xb0\xd1\x82\xd1\x83 \xd0\xa4\xd1\x80\xd0\xb0\xd0\xbd\xd1\x86\xd1\x8b\xd1\x96 \xd0\xbf\xd0\xb0 \xd1\x84\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd0\xb5 2019\xe2\x80\x942020 \xd0\xb3\xd0\xb0\xd0\xb4\xd0\xbe\xd1\x9e" data-language-autonym="\xd0\x91\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x80\xd1\x83\xd1\x81\xd0\xba\xd0\xb0\xd1\x8f (\xd1\x82\xd0\xb0\xd1\x80\xd0\xb0\xd1\x88\xd0\xba\xd0\xb5\xd0\xb2\xd1\x96\xd1\x86\xd0\xb0)" data-language-local-name="Belarusian (Tara\xc5\xa1kievica orthography)" class="interlanguage-link-target"><span>\xd0\x91\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x80\xd1\x83\xd1\x81\xd0\xba\xd0\xb0\xd1\x8f (\xd1\x82\xd0\xb0\xd1\x80\xd0\xb0\xd1\x88\xd0\xba\xd0\xb5\xd0\xb2\xd1\x96\xd1\x86\xd0\xb0)</span></a></li><li class="interlanguage-link interwiki-bn mw-list-item"><a href="https://bn.wikipedia.org/wiki/%E0%A7%A8%E0%A7%A6%E0%A7%A7%E0%A7%AF%E2%80%93%E0%A7%A8%E0%A7%A6_%E0%A6%B2%E0%A6%BF%E0%A6%97_%E0%A7%A7" title="\xe0\xa7\xa8\xe0\xa7\xa6\xe0\xa7\xa7\xe0\xa7\xaf\xe2\x80\x93\xe0\xa7\xa8\xe0\xa7\xa6 \xe0\xa6\xb2\xe0\xa6\xbf\xe0\xa6\x97 \xe0\xa7\xa7\xc2\xa0\xe2\x80\x93\xc2\xa0bengali" lang="bn" hreflang="bn" data-title="\xe0\xa7\xa8\xe0\xa7\xa6\xe0\xa7\xa7\xe0\xa7\xaf\xe2\x80\x93\xe0\xa7\xa8\xe0\xa7\xa6 \xe0\xa6\xb2\xe0\xa6\xbf\xe0\xa6\x97 \xe0\xa7\xa7" data-language-autonym="\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\x82\xe0\xa6\xb2\xe0\xa6\xbe" data-language-local-name="bengali" class="interlanguage-link-target"><span>\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\x82\xe0\xa6\xb2\xe0\xa6\xbe</span></a></li><li class="interlanguage-link interwiki-de mw-list-item"><a href="https://de.wikipedia.org/wiki/Ligue_1_2019/20" title="Ligue 1 2019/20\xc2\xa0\xe2\x80\x93\xc2\xa0allemand" lang="de" hreflang="de" data-title="Ligue 1 2019/20" data-language-autonym="Deutsch" data-language-local-name="allemand" class="interlanguage-link-target"><span>Deutsch</span></a></li><li class="interlanguage-link interwiki-en mw-list-item"><a href="https://en.wikipedia.org/wiki/2019%E2%80%9320_Ligue_1" title="2019\xe2\x80\x9320 Ligue 1\xc2\xa0\xe2\x80\x93\xc2\xa0anglais" lang="en" hreflang="en" data-title="2019\xe2\x80\x9320 Ligue 1" data-language-autonym="English" data-language-local-name="anglais" class="interlanguage-link-target"><span>English</span></a></li><li class="interlanguage-link interwiki-es mw-list-item"><a href="https://es.wikipedia.org/wiki/Ligue_1_2019-20" title="Ligue 1 2019-20\xc2\xa0\xe2\x80\x93\xc2\xa0espagnol" lang="es" hreflang="es" data-title="Ligue 1 2019-20" data-language-autonym="Espa\xc3\xb1ol" data-language-local-name="espagnol" class="interlanguage-link-target"><span>Espa\xc3\xb1ol</span></a></li><li class="interlanguage-link interwiki-fa mw-list-item"><a href="https://fa.wikipedia.org/wiki/%D9%84%DB%8C%DA%AF_%DB%B1_%DB%B2%DB%B0%E2%80%93%DB%B2%DB%B0%DB%B1%DB%B9" title="\xd9\x84\xdb\x8c\xda\xaf \xdb\xb1 \xdb\xb2\xdb\xb0\xe2\x80\x93\xdb\xb2\xdb\xb0\xdb\xb1\xdb\xb9\xc2\xa0\xe2\x80\x93\xc2\xa0persan" lang="fa" hreflang="fa" data-title="\xd9\x84\xdb\x8c\xda\xaf \xdb\xb1 \xdb\xb2\xdb\xb0\xe2\x80\x93\xdb\xb2\xdb\xb0\xdb\xb1\xdb\xb9" data-language-autonym="\xd9\x81\xd8\xa7\xd8\xb1\xd8\xb3\xdb\x8c" data-language-local-name="persan" class="interlanguage-link-target"><span>\xd9\x81\xd8\xa7\xd8\xb1\xd8\xb3\xdb\x8c</span></a></li><li class="interlanguage-link interwiki-he mw-list-item"><a href="https://he.wikipedia.org/wiki/%D7%A2%D7%95%D7%A0%D7%AA_2019/2020_%D7%91%D7%9C%D7%99%D7%92_1" title="\xd7\xa2\xd7\x95\xd7\xa0\xd7\xaa 2019/2020 \xd7\x91\xd7\x9c\xd7\x99\xd7\x92 1\xc2\xa0\xe2\x80\x93\xc2\xa0h\xc3\xa9breu" lang="he" hreflang="he" data-title="\xd7\xa2\xd7\x95\xd7\xa0\xd7\xaa 2019/2020 \xd7\x91\xd7\x9c\xd7\x99\xd7\x92 1" data-language-autonym="\xd7\xa2\xd7\x91\xd7\xa8\xd7\x99\xd7\xaa" data-language-local-name="h\xc3\xa9breu" class="interlanguage-link-target"><span>\xd7\xa2\xd7\x91\xd7\xa8\xd7\x99\xd7\xaa</span></a></li><li class="interlanguage-link interwiki-hu mw-list-item"><a href="https://hu.wikipedia.org/wiki/2019%E2%80%932020-as_francia_labdar%C3%BAg%C3%B3-bajnoks%C3%A1g_(els%C5%91_oszt%C3%A1ly)" title="2019\xe2\x80\x932020-as francia labdar\xc3\xbag\xc3\xb3-bajnoks\xc3\xa1g (els\xc5\x91 oszt\xc3\xa1ly)\xc2\xa0\xe2\x80\x93\xc2\xa0hongrois" lang="hu" hreflang="hu" data-title="2019\xe2\x80\x932020-as francia labdar\xc3\xbag\xc3\xb3-bajnoks\xc3\xa1g (els\xc5\x91 oszt\xc3\xa1ly)" data-language-autonym="Magyar" data-language-local-name="hongrois" class="interlanguage-link-target"><span>Magyar</span></a></li><li class="interlanguage-link interwiki-it mw-list-item"><a href="https://it.wikipedia.org/wiki/Ligue_1_2019-2020" title="Ligue 1 2019-2020\xc2\xa0\xe2\x80\x93\xc2\xa0italien" lang="it" hreflang="it" data-title="Ligue 1 2019-2020" data-language-autonym="Italiano" data-language-local-name="italien" class="interlanguage-link-target"><span>Italiano</span></a></li><li class="interlanguage-link interwiki-ja mw-list-item"><a href="https://ja.wikipedia.org/wiki/%E3%83%AA%E3%83%BC%E3%82%B0%E3%83%BB%E3%82%A2%E3%83%B32019-2020" title="\xe3\x83\xaa\xe3\x83\xbc\xe3\x82\xb0\xe3\x83\xbb\xe3\x82\xa2\xe3\x83\xb32019-2020\xc2\xa0\xe2\x80\x93\xc2\xa0japonais" lang="ja" hreflang="ja" data-title="\xe3\x83\xaa\xe3\x83\xbc\xe3\x82\xb0\xe3\x83\xbb\xe3\x82\xa2\xe3\x83\xb32019-2020" data-language-autonym="\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e" data-language-local-name="japonais" class="interlanguage-link-target"><span>\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e</span></a></li><li class="interlanguage-link interwiki-kk mw-list-item"><a href="https://kk.wikipedia.org/wiki/%D0%A4%D1%83%D1%82%D0%B1%D0%BE%D0%BB%D0%B4%D0%B0%D0%BD_%D0%A4%D1%80%D0%B0%D0%BD%D1%86%D0%B8%D1%8F_%D1%87%D0%B5%D0%BC%D0%BF%D0%B8%D0%BE%D0%BD%D0%B0%D1%82%D1%8B_2019/20" title="\xd0\xa4\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd0\xb4\xd0\xb0\xd0\xbd \xd0\xa4\xd1\x80\xd0\xb0\xd0\xbd\xd1\x86\xd0\xb8\xd1\x8f \xd1\x87\xd0\xb5\xd0\xbc\xd0\xbf\xd0\xb8\xd0\xbe\xd0\xbd\xd0\xb0\xd1\x82\xd1\x8b 2019/20\xc2\xa0\xe2\x80\x93\xc2\xa0kazakh" lang="kk" hreflang="kk" data-title="\xd0\xa4\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd0\xb4\xd0\xb0\xd0\xbd \xd0\xa4\xd1\x80\xd0\xb0\xd0\xbd\xd1\x86\xd0\xb8\xd1\x8f \xd1\x87\xd0\xb5\xd0\xbc\xd0\xbf\xd0\xb8\xd0\xbe\xd0\xbd\xd0\xb0\xd1\x82\xd1\x8b 2019/20" data-language-autonym="\xd2\x9a\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b\xd1\x88\xd0\xb0" data-language-local-name="kazakh" class="interlanguage-link-target"><span>\xd2\x9a\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b\xd1\x88\xd0\xb0</span></a></li><li class="interlanguage-link interwiki-ko mw-list-item"><a href="https://ko.wikipedia.org/wiki/%EB%A6%AC%EA%B7%B8_1_2019-20" title="\xeb\xa6\xac\xea\xb7\xb8 1 2019-20\xc2\xa0\xe2\x80\x93\xc2\xa0cor\xc3\xa9en" lang="ko" hreflang="ko" data-title="\xeb\xa6\xac\xea\xb7\xb8 1 2019-20" data-language-autonym="\xed\x95\x9c\xea\xb5\xad\xec\x96\xb4" data-language-local-name="cor\xc3\xa9en" class="interlanguage-link-target"><span>\xed\x95\x9c\xea\xb5\xad\xec\x96\xb4</span></a></li><li class="interlanguage-link interwiki-lv mw-list-item"><a href="https://lv.wikipedia.org/wiki/2019.%E2%80%942020._gada_Francijas_futbola_1._l%C4%ABgas_sezona" title="2019.\xe2\x80\x942020. gada Francijas futbola 1. l\xc4\xabgas sezona\xc2\xa0\xe2\x80\x93\xc2\xa0letton" lang="lv" hreflang="lv" data-title="2019.\xe2\x80\x942020. gada Francijas futbola 1. l\xc4\xabgas sezona" data-language-autonym="Latvie\xc5\xa1u" data-language-local-name="letton" class="interlanguage-link-target"><span>Latvie\xc5\xa1u</span></a></li><li class="interlanguage-link interwiki-nl mw-list-item"><a href="https://nl.wikipedia.org/wiki/Ligue_1_2019/20" title="Ligue 1 2019/20\xc2\xa0\xe2\x80\x93\xc2\xa0n\xc3\xa9erlandais" lang="nl" hreflang="nl" data-title="Ligue 1 2019/20" data-language-autonym="Nederlands" data-language-local-name="n\xc3\xa9erlandais" class="interlanguage-link-target"><span>Nederlands</span></a></li><li class="interlanguage-link interwiki-no mw-list-item"><a href="https://no.wikipedia.org/wiki/Ligue_1_2019%E2%80%932020" title="Ligue 1 2019\xe2\x80\x932020\xc2\xa0\xe2\x80\x93\xc2\xa0norv\xc3\xa9gien bokm\xc3\xa5l" lang="nb" hreflang="nb" data-title="Ligue 1 2019\xe2\x80\x932020" data-language-autonym="Norsk bokm\xc3\xa5l" data-language-local-name="norv\xc3\xa9gien bokm\xc3\xa5l" class="interlanguage-link-target"><span>Norsk bokm\xc3\xa5l</span></a></li><li class="interlanguage-link interwiki-pl mw-list-item"><a href="https://pl.wikipedia.org/wiki/Ligue_1_(2019/2020)" title="Ligue 1 (2019/2020)\xc2\xa0\xe2\x80\x93\xc2\xa0polonais" lang="pl" hreflang="pl" data-title="Ligue 1 (2019/2020)" data-language-autonym="Polski" data-language-local-name="polonais" class="interlanguage-link-target"><span>Polski</span></a></li><li class="interlanguage-link interwiki-pt mw-list-item"><a href="https://pt.wikipedia.org/wiki/Ligue_1_de_2019%E2%80%9320" title="Ligue 1 de 2019\xe2\x80\x9320\xc2\xa0\xe2\x80\x93\xc2\xa0portugais" lang="pt" hreflang="pt" data-title="Ligue 1 de 2019\xe2\x80\x9320" data-language-autonym="Portugu\xc3\xaas" data-language-local-name="portugais" class="interlanguage-link-target"><span>Portugu\xc3\xaas</span></a></li><li class="interlanguage-link interwiki-ru mw-list-item"><a href="https://ru.wikipedia.org/wiki/%D0%A7%D0%B5%D0%BC%D0%BF%D0%B8%D0%BE%D0%BD%D0%B0%D1%82_%D0%A4%D1%80%D0%B0%D0%BD%D1%86%D0%B8%D0%B8_%D0%BF%D0%BE_%D1%84%D1%83%D1%82%D0%B1%D0%BE%D0%BB%D1%83_2019/2020" title="\xd0\xa7\xd0\xb5\xd0\xbc\xd0\xbf\xd0\xb8\xd0\xbe\xd0\xbd\xd0\xb0\xd1\x82 \xd0\xa4\xd1\x80\xd0\xb0\xd0\xbd\xd1\x86\xd0\xb8\xd0\xb8 \xd0\xbf\xd0\xbe \xd1\x84\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd1\x83 2019/2020\xc2\xa0\xe2\x80\x93\xc2\xa0russe" lang="ru" hreflang="ru" data-title="\xd0\xa7\xd0\xb5\xd0\xbc\xd0\xbf\xd0\xb8\xd0\xbe\xd0\xbd\xd0\xb0\xd1\x82 \xd0\xa4\xd1\x80\xd0\xb0\xd0\xbd\xd1\x86\xd0\xb8\xd0\xb8 \xd0\xbf\xd0\xbe \xd1\x84\xd1\x83\xd1\x82\xd0\xb1\xd0\xbe\xd0\xbb\xd1\x83 2019/2020" data-language-autonym="\xd0\xa0\xd1\x83\xd1\x81\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9" data-language-local-name="russe" class="interlanguage-link-target"><span>\xd0\xa0\xd1\x83\xd1\x81\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9</span></a></li><li class="interlanguage-link interwiki-sk mw-list-item"><a href="https://sk.wikipedia.org/wiki/Ligue_1_2019/2020" title="Ligue 1 2019/2020\xc2\xa0\xe2\x80\x93\xc2\xa0slovaque" lang="sk" hreflang="sk" data-title="Ligue 1 2019/2020" data-language-autonym="Sloven\xc4\x8dina" data-language-local-name="slovaque" class="interlanguage-link-target"><span>Sloven\xc4\x8dina</span></a></li><li class="interlanguage-link interwiki-sv mw-list-item"><a href="https://sv.wikipedia.org/wiki/Ligue_1_2019/2020" title="Ligue 1 2019/2020\xc2\xa0\xe2\x80\x93\xc2\xa0su\xc3\xa9dois" lang="sv" hreflang="sv" data-title="Ligue 1 2019/2020" data-language-autonym="Svenska" data-language-local-name="su\xc3\xa9dois" class="interlanguage-link-target"><span>Svenska</span></a></li><li class="interlanguage-link interwiki-th mw-list-item"><a href="https://th.wikipedia.org/wiki/%E0%B8%A5%E0%B8%B5%E0%B8%81%E0%B9%80%E0%B8%AD%E0%B8%B4%E0%B8%87_%E0%B8%A4%E0%B8%94%E0%B8%B9%E0%B8%81%E0%B8%B2%E0%B8%A5_2019%E2%80%9320" title="\xe0\xb8\xa5\xe0\xb8\xb5\xe0\xb8\x81\xe0\xb9\x80\xe0\xb8\xad\xe0\xb8\xb4\xe0\xb8\x87 \xe0\xb8\xa4\xe0\xb8\x94\xe0\xb8\xb9\xe0\xb8\x81\xe0\xb8\xb2\xe0\xb8\xa5 2019\xe2\x80\x9320\xc2\xa0\xe2\x80\x93\xc2\xa0tha\xc3\xaf" lang="th" hreflang="th" data-title="\xe0\xb8\xa5\xe0\xb8\xb5\xe0\xb8\x81\xe0\xb9\x80\xe0\xb8\xad\xe0\xb8\xb4\xe0\xb8\x87 \xe0\xb8\xa4\xe0\xb8\x94\xe0\xb8\xb9\xe0\xb8\x81\xe0\xb8\xb2\xe0\xb8\xa5 2019\xe2\x80\x9320" data-language-autonym="\xe0\xb9\x84\xe0\xb8\x97\xe0\xb8\xa2" data-language-local-name="tha\xc3\xaf" class="interlanguage-link-target"><span>\xe0\xb9\x84\xe0\xb8\x97\xe0\xb8\xa2</span></a></li><li class="interlanguage-link interwiki-tr mw-list-item"><a href="https://tr.wikipedia.org/wiki/2019-20_Ligue_1" title="2019-20 Ligue 1\xc2\xa0\xe2\x80\x93\xc2\xa0turc" lang="tr" hreflang="tr" data-title="2019-20 Ligue 1" data-language-autonym="T\xc3\xbcrk\xc3\xa7e" data-language-local-name="turc" class="interlanguage-link-target"><span>T\xc3\xbcrk\xc3\xa7e</span></a></li><li class="interlanguage-link interwiki-uk mw-list-item"><a href="https://uk.wikipedia.org/wiki/%D0%9B%D1%96%D0%B3%D0%B0_1_2019%E2%80%942020" title="\xd0\x9b\xd1\x96\xd0\xb3\xd0\xb0 1 2019\xe2\x80\x942020\xc2\xa0\xe2\x80\x93\xc2\xa0ukrainien" lang="uk" hreflang="uk" data-title="\xd0\x9b\xd1\x96\xd0\xb3\xd0\xb0 1 2019\xe2\x80\x942020" data-language-autonym="\xd0\xa3\xd0\xba\xd1\x80\xd0\xb0\xd1\x97\xd0\xbd\xd1\x81\xd1\x8c\xd0\xba\xd0\xb0" data-language-local-name="ukrainien" class="interlanguage-link-target"><span>\xd0\xa3\xd0\xba\xd1\x80\xd0\xb0\xd1\x97\xd0\xbd\xd1\x81\xd1\x8c\xd0\xba\xd0\xb0</span></a></li><li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://vi.wikipedia.org/wiki/Ligue_1_2019%E2%80%9320" title="Ligue 1 2019\xe2\x80\x9320\xc2\xa0\xe2\x80\x93\xc2\xa0vietnamien" lang="vi" hreflang="vi" data-title="Ligue 1 2019\xe2\x80\x9320" data-language-autonym="Ti\xe1\xba\xbfng Vi\xe1\xbb\x87t" data-language-local-name="vietnamien" class="interlanguage-link-target"><span>Ti\xe1\xba\xbfng Vi\xe1\xbb\x87t</span></a></li><li class="interlanguage-link interwiki-zh mw-list-item"><a href="https://zh.wikipedia.org/wiki/2019%E5%B9%B4%E8%87%B32020%E5%B9%B4%E6%B3%95%E5%9C%8B%E8%B6%B3%E7%90%83%E7%94%B2%E7%B4%9A%E8%81%AF%E8%B3%BD" title="2019\xe5\xb9\xb4\xe8\x87\xb32020\xe5\xb9\xb4\xe6\xb3\x95\xe5\x9c\x8b\xe8\xb6\xb3\xe7\x90\x83\xe7\x94\xb2\xe7\xb4\x9a\xe8\x81\xaf\xe8\xb3\xbd\xc2\xa0\xe2\x80\x93\xc2\xa0chinois" lang="zh" hreflang="zh" data-title="2019\xe5\xb9\xb4\xe8\x87\xb32020\xe5\xb9\xb4\xe6\xb3\x95\xe5\x9c\x8b\xe8\xb6\xb3\xe7\x90\x83\xe7\x94\xb2\xe7\xb4\x9a\xe8\x81\xaf\xe8\xb3\xbd" data-language-autonym="\xe4\xb8\xad\xe6\x96\x87" data-language-local-name="chinois" class="interlanguage-link-target"><span>\xe4\xb8\xad\xe6\x96\x87</span></a></li>\n\t\t\t</ul>\n\t\t\t<div class="after-portlet after-portlet-lang"><span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q61862323#sitelinks-wikipedia" title="Modifier les liens interlangues" class="wbc-editpage">Modifier les liens</a></span></div>\n\t\t</div>\n\n\t</div>\n</div>\n</header>\n\t\t\t\t<div class="vector-page-toolbar">\n\t\t\t\t\t<div class="vector-page-toolbar-container">\n\t\t\t\t\t\t<div id="left-navigation">\n\t\t\t\t\t\t\t<nav aria-label="Espaces de noms">\n\t\t\t\t\t\t\t\t\n<div id="p-associated-pages" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="ca-nstab-main" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/Championnat_de_France_de_football_2019-2020" title="Voir le contenu de la page [c]" accesskey="c"><span>Article</span></a></li><li id="ca-talk" class="vector-tab-noicon mw-list-item"><a href="/wiki/Discussion:Championnat_de_France_de_football_2019-2020" rel="discussion" title="Discussion au sujet de cette page de contenu [t]" accesskey="t"><span>Discussion</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\t\t\t\t\t\t\t\n<div id="vector-variants-dropdown" class="vector-dropdown emptyPortlet"  >\n\t<input type="checkbox" id="vector-variants-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-variants-dropdown" class="vector-dropdown-checkbox " aria-label="Modifier la variante de langue"   >\n\t<label id="vector-variants-dropdown-label" for="vector-variants-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"  ><span class="vector-dropdown-label-text">fran\xc3\xa7ais</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\n\t\t\t\t\t\n<div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants emptyPortlet"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\t\t\t\n\t</div>\n</div>\n\n\t\t\t\t\t\t\t</nav>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div id="right-navigation" class="vector-collapsible">\n\t\t\t\t\t\t\t<nav aria-label="Affichages">\n\t\t\t\t\t\t\t\t\n<div id="p-views" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views"  >\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="ca-view" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/Championnat_de_France_de_football_2019-2020"><span>Lire</span></a></li><li id="ca-ve-edit" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit" title="Modifier cette page [v]" accesskey="v"><span>Modifier</span></a></li><li id="ca-edit" class="collapsible vector-tab-noicon mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit" title="Modifier le wikicode de cette page [e]" accesskey="e"><span>Modifier le code</span></a></li><li id="ca-history" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=history" title="Historique des versions de cette page [h]" accesskey="h"><span>Voir l\xe2\x80\x99historique</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n\t\t\t\t\t\t\t</nav>\n\t\t\t\t\n\t\t\t\t\t\t\t<nav class="vector-page-tools-landmark" aria-label="Outils de la page">\n\t\t\t\t\t\t\t\t\n<div id="vector-page-tools-dropdown" class="vector-dropdown vector-page-tools-dropdown"  >\n\t<input type="checkbox" id="vector-page-tools-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-tools-dropdown" class="vector-dropdown-checkbox "  aria-label="Outils"  >\n\t<label id="vector-page-tools-dropdown-label" for="vector-page-tools-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"  ><span class="vector-dropdown-label-text">Outils</span>\n\t</label>\n\t<div class="vector-dropdown-content">\n\n\n\t\t\t\t\t\t\t\t\t<div id="vector-page-tools-unpinned-container" class="vector-unpinned-container">\n\t\t\t\t\t\t\n<div id="vector-page-tools" class="vector-page-tools vector-pinnable-element">\n\t<div\n\tclass="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned"\n\tdata-feature-name="page-tools-pinned"\n\tdata-pinnable-element-id="vector-page-tools"\n\tdata-pinned-container-id="vector-page-tools-pinned-container"\n\tdata-unpinned-container-id="vector-page-tools-unpinned-container"\n>\n\t<div class="vector-pinnable-header-label">Outils</div>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">d\xc3\xa9placer vers la barre lat\xc3\xa9rale</button>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">masquer</button>\n</div>\n\n\t\n<div id="p-cactions" class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items"  title="Plus d\xe2\x80\x99options" >\n\t<div class="vector-menu-heading">\n\t\tActions\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="ca-more-view" class="selected vector-more-collapsible-item mw-list-item"><a href="/wiki/Championnat_de_France_de_football_2019-2020"><span>Lire</span></a></li><li id="ca-more-ve-edit" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit" title="Modifier cette page [v]" accesskey="v"><span>Modifier</span></a></li><li id="ca-more-edit" class="collapsible vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit" title="Modifier le wikicode de cette page [e]" accesskey="e"><span>Modifier le code</span></a></li><li id="ca-more-history" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=history"><span>Voir l\xe2\x80\x99historique</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n<div id="p-tb" class="vector-menu mw-portlet mw-portlet-tb"  >\n\t<div class="vector-menu-heading">\n\t\tG\xc3\xa9n\xc3\xa9ral\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="t-whatlinkshere" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Pages_li%C3%A9es/Championnat_de_France_de_football_2019-2020" title="Liste des pages li\xc3\xa9es qui pointent sur celle-ci [j]" accesskey="j"><span>Pages li\xc3\xa9es</span></a></li><li id="t-recentchangeslinked" class="mw-list-item"><a href="/wiki/Sp%C3%A9cial:Suivi_des_liens/Championnat_de_France_de_football_2019-2020" rel="nofollow" title="Liste des modifications r\xc3\xa9centes des pages appel\xc3\xa9es par celle-ci [k]" accesskey="k"><span>Suivi des pages li\xc3\xa9es</span></a></li><li id="t-upload" class="mw-list-item"><a href="//fr.wikipedia.org/wiki/Aide:Importer_un_fichier" title="T\xc3\xa9l\xc3\xa9verser des fichiers [u]" accesskey="u"><span>T\xc3\xa9l\xc3\xa9verser un fichier</span></a></li><li id="t-permalink" class="mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;oldid=223938410" title="Adresse permanente de cette version de cette page"><span>Lien permanent</span></a></li><li id="t-info" class="mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=info" title="Davantage d\xe2\x80\x99informations sur cette page"><span>Informations sur la page</span></a></li><li id="t-cite" class="mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:Citer&amp;page=Championnat_de_France_de_football_2019-2020&amp;id=223938410&amp;wpFormIdentifier=titleform" title="Informations sur la mani\xc3\xa8re de citer cette page"><span>Citer cette page</span></a></li><li id="t-urlshortener" class="mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:UrlShortener&amp;url=https%3A%2F%2Ffr.wikipedia.org%2Fwiki%2FChampionnat_de_France_de_football_2019-2020"><span>Obtenir l&#039;URL raccourcie</span></a></li><li id="t-urlshortener-qrcode" class="mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:QrCode&amp;url=https%3A%2F%2Ffr.wikipedia.org%2Fwiki%2FChampionnat_de_France_de_football_2019-2020"><span>T\xc3\xa9l\xc3\xa9charger le code QR</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export"  >\n\t<div class="vector-menu-heading">\n\t\tImprimer\xe2\x80\xaf/\xe2\x80\xafexporter\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li id="coll-create_a_book" class="mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:Livre&amp;bookcmd=book_creator&amp;referer=Championnat+de+France+de+football+2019-2020"><span>Cr\xc3\xa9er un livre</span></a></li><li id="coll-download-as-rl" class="mw-list-item"><a href="/w/index.php?title=Sp%C3%A9cial:DownloadAsPdf&amp;page=Championnat_de_France_de_football_2019-2020&amp;action=show-download-screen"><span>T\xc3\xa9l\xc3\xa9charger comme PDF</span></a></li><li id="t-print" class="mw-list-item"><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;printable=yes" title="Version imprimable de cette page [p]" accesskey="p"><span>Version imprimable</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects"  >\n\t<div class="vector-menu-heading">\n\t\tDans d\xe2\x80\x99autres projets\n\t</div>\n\t<div class="vector-menu-content">\n\t\t\n\t\t<ul class="vector-menu-content-list">\n\t\t\t\n\t\t\t<li class="wb-otherproject-link wb-otherproject-commons mw-list-item"><a href="https://commons.wikimedia.org/wiki/Category:Ligue_1_season_2019-2020" hreflang="en"><span>Wikimedia Commons</span></a></li><li id="t-wikibase" class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q61862323" title="Lien vers l\xe2\x80\x99\xc3\xa9l\xc3\xa9ment dans le d\xc3\xa9p\xc3\xb4t de donn\xc3\xa9es connect\xc3\xa9 [g]" accesskey="g"><span>\xc3\x89l\xc3\xa9ment Wikidata</span></a></li>\n\t\t</ul>\n\t\t\n\t</div>\n</div>\n\n</div>\n\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\n\t</div>\n</div>\n\n\t\t\t\t\t\t\t</nav>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class="vector-column-end">\n\t\t\t\t\t<div class="vector-sticky-pinned-container">\n\t\t\t\t\t\t<nav class="vector-page-tools-landmark" aria-label="Outils de la page">\n\t\t\t\t\t\t\t<div id="vector-page-tools-pinned-container" class="vector-pinned-container">\n\t\t\t\t\n\t\t\t\t\t\t\t</div>\n\t\t</nav>\n\t\t\t\t\t\t<nav class="vector-appearance-landmark" aria-label="Apparence">\n\t\t\t\t\t\t\t<div id="vector-appearance-pinned-container" class="vector-pinned-container">\n\t\t\t\t<div id="vector-appearance" class="vector-appearance vector-pinnable-element">\n\t<div\n\tclass="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned"\n\tdata-feature-name="appearance-pinned"\n\tdata-pinnable-element-id="vector-appearance"\n\tdata-pinned-container-id="vector-appearance-pinned-container"\n\tdata-unpinned-container-id="vector-appearance-unpinned-container"\n>\n\t<div class="vector-pinnable-header-label">Apparence</div>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">d\xc3\xa9placer vers la barre lat\xc3\xa9rale</button>\n\t<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">masquer</button>\n</div>\n\n\n</div>\n\n\t\t\t\t\t\t\t</div>\n\t\t</nav>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>\n\t\t\t\t\t<div class="vector-body-before-content">\n\t\t\t\t\t\t\t<div class="mw-indicators">\n\t\t</div>\n\n\t\t\t\t\t\t<div id="siteSub" class="noprint">Un article de Wikip\xc3\xa9dia, l&#039;encyclop\xc3\xa9die libre.</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div id="contentSub"><div id="mw-content-subtitle"></div></div>\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t<div id="mw-content-text" class="mw-body-content"><div class="mw-content-ltr mw-parser-output" lang="fr" dir="ltr"><div class="infobox_v3 infobox infobox--frwiki noarchive">\n<div class="entete icon football" style="background-color: #99cc99; color: #000000;"><style data-mw-deduplicate="TemplateStyles:r160408203">.mw-parser-output .entete.football{background-image:url("//upload.wikimedia.org/wikipedia/commons/f/f8/Infobox_Football_pictogram.png")}</style>\n<div>Ligue 1 2019-2020</div>\n</div><div class="images"><span class="mw-default-size" typeof="mw:File/Frameless"><a href="/w/index.php?title=Fichier:Ligue_1_Conforama.svg&amp;lang=fr" class="mw-file-description"><img alt="Logo du championnat de France de football" src="//upload.wikimedia.org/wikipedia/fr/thumb/1/14/Ligue_1_Conforama.svg/langfr-130px-Ligue_1_Conforama.svg.png" decoding="async" width="130" height="179" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/fr/thumb/1/14/Ligue_1_Conforama.svg/langfr-195px-Ligue_1_Conforama.svg.png 1.5x, //upload.wikimedia.org/wikipedia/fr/thumb/1/14/Ligue_1_Conforama.svg/langfr-260px-Ligue_1_Conforama.svg.png 2x" data-file-width="45" data-file-height="62" /></a></span> \n</div><table><caption style="background-color:#99cc99;color:#000000;">G\xc3\xa9n\xc3\xa9ralit\xc3\xa9s</caption><tbody><tr>\n<th scope="row" style="width:10.5em;">Sport</th>\n<td>\n<a href="/wiki/Football" title="Football">Football</a></td>\n</tr>\n\n\n\n\n<tr>\n<th scope="row" style="width:10.5em;">Organisateur(s)</th>\n<td>\n<a href="/wiki/Ligue_de_football_professionnel_(France)" title="Ligue de football professionnel (France)">LFP</a></td>\n</tr>\n<tr>\n<th scope="row" style="width:10.5em;">\xc3\x89dition</th>\n<td>\n<abbr class="abbr" title="Quatre-vingt-deuxi\xc3\xa8me (huitante-deuxi\xc3\xa8me / octante-deuxi\xc3\xa8me)">82<sup>e</sup></abbr></td>\n</tr>\n\n\n\n\n<tr>\n<th scope="row" style="width:10.5em;">Lieu(x)</th>\n<td>\n<span class="datasortkey" data-sort-value="France"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France_(1976%E2%80%932020).svg" class="mw-file-description" title="Drapeau de la France"><img alt="Drapeau de la France" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_France_%281976%E2%80%932020%29.svg/20px-Flag_of_France_%281976%E2%80%932020%29.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_France_%281976%E2%80%932020%29.svg/30px-Flag_of_France_%281976%E2%80%932020%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_France_%281976%E2%80%932020%29.svg/40px-Flag_of_France_%281976%E2%80%932020%29.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span> </span><a href="/wiki/France" title="France">France</a></span> et <br /><span class="datasortkey" data-sort-value="Monaco"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Monaco.svg" class="mw-file-description" title="Drapeau de Monaco"><img alt="Drapeau de Monaco" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/20px-Flag_of_Monaco.svg.png" decoding="async" width="20" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/30px-Flag_of_Monaco.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/40px-Flag_of_Monaco.svg.png 2x" data-file-width="1000" data-file-height="800" /></a></span> </span><a href="/wiki/Monaco" title="Monaco">Monaco</a></span></td>\n</tr>\n<tr>\n<th scope="row" style="width:10.5em;">Date</th>\n<td>\nDu <time class="nowrap date-lien" datetime="2019-08-09" data-sort-value="2019-08-09"><a href="/wiki/9_ao%C3%BBt_en_sport" title="9 ao\xc3\xbbt en sport">9</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time><br />au <time class="nowrap date-lien" datetime="2020-03-08" data-sort-value="2020-03-08"><a href="/wiki/8_mars_en_sport" title="8 mars en sport">8 mars</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> <small>(arr\xc3\xaat d\xc3\xa9finitif)</small></td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;">Participants</th>\n<td>\n20 \xc3\xa9quipes</td>\n</tr>\n\n\n\n<tr>\n<th scope="row" style="width:10.5em;">Matchs jou\xc3\xa9s</th>\n<td>\n279 (sur 380 pr\xc3\xa9vus)</td>\n</tr>\n\n\n\n\n\n\n\n\n<tr>\n<th scope="row" style="width:10.5em;">Site web officiel</th>\n<td>\n<cite class="ouvrage" id="site_officiel" style="font-style: normal;"><a rel="nofollow" class="external text" href="https://www.ligue1.fr/">Site officiel</a></cite></td>\n</tr></tbody></table><table><caption style="background-color:#99cc99;color:#000000;">Hi\xc3\xa9rarchie</caption><tbody><tr>\n<th scope="row" style="width:10.5em;">Hi\xc3\xa9rarchie</th>\n<td>\n<abbr class="abbr" title="Premier">1<sup>er</sup></abbr>&#160;\xc3\xa9chelon</td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;">Niveau inf\xc3\xa9rieur</th>\n<td>\n<a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2019-2020" class="mw-redirect" title="Championnat de France de football de Ligue 2 2019-2020">Ligue 2 2019-2020</a></td>\n</tr></tbody></table><p class="mw-empty-elt">\n\n\n</p><table><caption style="background-color:#99cc99;color:#000000;">Palmar\xc3\xa8s</caption>\n\n<tbody><tr>\n<th scope="row" style="width:10.5em;">Tenant du titre</th>\n<td>\n<a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> (8)</td>\n</tr>\n<tr>\n<th scope="row" style="width:10.5em;">Promu(s) en d\xc3\xa9but de saison</th>\n<td>\n<a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a><br /><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a></td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;">Vainqueur</th>\n<td>\n<b><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></b> (9)</td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;">Deuxi\xc3\xa8me</th>\n<td>\n<a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a></td>\n</tr>\n<tr>\n<th scope="row" style="width:10.5em;">Troisi\xc3\xa8me</th>\n<td>\n<a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a></td>\n</tr>\n\n\n\n\n<tr>\n<th scope="row" style="width:10.5em;">Rel\xc3\xa9gu\xc3\xa9(s)</th>\n<td>\n<a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a><br /><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a></td>\n</tr>\n<tr>\n<th scope="row" style="width:10.5em;">Buts</th>\n<td>\n702 <small>(2,51 buts par match)</small></td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;"><span typeof="mw:File"><span title="Averti"><img alt="Averti" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" width="10" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="200" data-file-height="260" /></span></span> Cartons jaunes</th>\n<td>\n1029 <small>(3,68 par match)</small></td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;"><span typeof="mw:File"><a href="/wiki/Fichier:Red_card.svg" class="mw-file-description"><img src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Red_card.svg/10px-Red_card.svg.png" decoding="async" width="10" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Red_card.svg/15px-Red_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Red_card.svg/20px-Red_card.svg.png 2x" data-file-width="200" data-file-height="260" /></a></span> Cartons rouges</th>\n<td>\n70 <small>(0,25 par match)</small></td>\n</tr>\n\n\n\n\n<tr>\n<th scope="row" style="width:10.5em;">Meilleur joueur</th>\n<td>\nNon attribu\xc3\xa9</td>\n</tr>\n\n<tr>\n<th scope="row" style="width:10.5em;">Meilleur(s) buteur(s)</th>\n<td>\n<p><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Kylian_Mbapp%C3%A9" title="Kylian Mbapp\xc3\xa9">Kylian Mbapp\xc3\xa9</a> (18)\n</p>\n<span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Wissam_Ben_Yedder" title="Wissam Ben Yedder">Wissam Ben Yedder</a> (18)</td>\n</tr>\n<tr>\n<th scope="row" style="width:10.5em;">Meilleur(s) passeur(s)</th>\n<td>\n<span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Argentina.svg" class="mw-file-description" title="Drapeau : Argentine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/20px-Flag_of_Argentina.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/30px-Flag_of_Argentina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png 2x" data-file-width="800" data-file-height="500" /></a></span></span> <a href="/wiki/%C3%81ngel_Di_Mar%C3%ADa" title="\xc3\x81ngel Di Mar\xc3\xada">\xc3\x81ngel Di Mar\xc3\xada</a> (14)</td>\n</tr>\n\n\n\n\n\n\n</tbody></table><p class="bloc" style="background-color:#99cc99; color:#000000;"><a href="/wiki/Championnat_de_France_de_football" title="Championnat de France de football">Navigation</a></p>\n<p class="overflow infobox-navigateur navigation-not-searchable" style=""><span class="prev"><a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">Ligue 1 2018-2019</a></span> <span class="next"><a href="/wiki/Championnat_de_France_de_football_2020-2021" title="Championnat de France de football 2020-2021">Ligue 1 2020-2021</a></span></p>\n<p class="navbar bordered noprint" style="border-color:#99cc99; border-width:2px;"><span class="plainlinks navigation-not-searchable"><a class="external text" href="https://fr.wikipedia.org/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit">modifier</a></span> <span typeof="mw:File"><a href="/wiki/Mod%C3%A8le:Infobox_Comp%C3%A9tition_sportive" title="Consultez la documentation du mod\xc3\xa8le"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Info_Simple.svg/12px-Info_Simple.svg.png" decoding="async" width="12" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Info_Simple.svg/18px-Info_Simple.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/38/Info_Simple.svg/24px-Info_Simple.svg.png 2x" data-file-width="512" data-file-height="512" /></a></span></p></div>\n<p>La <b>saison 2019-2020 de Ligue 1</b> est la <abbr class="abbr" title="Quatre-vingt-deuxi\xc3\xa8me (huitante-deuxi\xc3\xa8me / octante-deuxi\xc3\xa8me)">82<sup>e</sup></abbr> \xc3\xa9dition du <a href="/wiki/Championnat_de_France_de_football" title="Championnat de France de football">championnat de France de football</a> et la <abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> sous l\'appellation \xc2\xab&#160;<span class="nowrap">Ligue 1</span>&#160;\xc2\xbb, la <abbr class="abbr" title="Troisi\xc3\xa8me">3<sup>e</sup></abbr> et derni\xc3\xa8re sous l\'appellation Ligue 1 Conforama. La saison a d\xc3\xa9but\xc3\xa9 le <time class="nowrap date-lien" datetime="2019-08-09" data-sort-value="2019-08-09"><a href="/wiki/9_ao%C3%BBt_en_sport" title="9 ao\xc3\xbbt en sport">9</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> et s\'est achev\xc3\xa9e de mani\xc3\xa8re pr\xc3\xa9matur\xc3\xa9e le <time class="nowrap date-lien" datetime="2020-03-08" data-sort-value="2020-03-08"><a href="/wiki/8_mars_en_sport" title="8 mars en sport">8 mars</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> \xc3\xa0 la suite de la <a href="/wiki/Pand%C3%A9mie_de_Covid-19_en_France" title="Pand\xc3\xa9mie de Covid-19 en France">pand\xc3\xa9mie de Covid-19 en France</a><sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span class="cite_crochet">[</span>1<span class="cite_crochet">]</span></a></sup>.\n</p><p>Les \xc3\xa9quipes promues de deuxi\xc3\xa8me division sont le <a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a> et le <a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a>.\n</p><p>Le 30 avril 2020, la LFP vote la fin officielle du championnat et d\xc3\xa9termine le classement final en prenant en compte un indice de performance (ratio) selon le nombre de points marqu\xc3\xa9s sur tous les matchs jou\xc3\xa9s<sup id="cite_ref-covid_2-0" class="reference"><a href="#cite_note-covid-2"><span class="cite_crochet">[</span>2<span class="cite_crochet">]</span></a></sup>. Le <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> est d\xc3\xa9clar\xc3\xa9 champion de France, les clubs rel\xc3\xa9gu\xc3\xa9s en <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2" class="mw-redirect" title="Championnat de France de football de Ligue 2">Ligue 2</a> sont l\'<a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a> et le <a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a><sup id="cite_ref-covid_2-1" class="reference"><a href="#cite_note-covid-2"><span class="cite_crochet">[</span>2<span class="cite_crochet">]</span></a></sup>.\n</p>\n<meta property="mw:PageProp/toc" />\n<div class="mw-heading mw-heading2"><h2 id="Participants">Participants</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=1" title="Modifier la section\xe2\x80\xaf: Participants" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=1" title="Modifier le code source de la section : Participants"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Les 17 premiers du <a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">championnat 2018-2019</a>, les deux premiers de la <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2018-2019" class="mw-redirect" title="Championnat de France de football de Ligue 2 2018-2019">Ligue 2 2018-2019</a> et le vainqueur du barrage opposant le <abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> de Ligue 1 au vainqueur des Playoffs de Ligue 2 participent \xc3\xa0 la comp\xc3\xa9tition.\n</p>\n<div class="center" style="margin-bottom: .5em; border-style: solid; border-color: transparent; width: auto;"><table cellspacing="0" align="center"><tbody><tr><td style="border:none;"><div class="thumbinner"><div class="thumbimage">\n<table class="DebutCarte" style="width:auto; margin:0; border:none; border-spacing:0; padding:0; text-align:center; font-size:75%; line-height:1.1em;">\n<tbody><tr><td style="border:none; padding:0"><div style="position:relative;;"><span typeof="mw:File"><a href="/wiki/Fichier:France_location_map-Regions_and_departements-2016.svg" class="mw-file-description"><img src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e9/France_location_map-Regions_and_departements-2016.svg/400px-France_location_map-Regions_and_departements-2016.svg.png" decoding="async" width="400" height="384" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e9/France_location_map-Regions_and_departements-2016.svg/600px-France_location_map-Regions_and_departements-2016.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e9/France_location_map-Regions_and_departements-2016.svg/800px-France_location_map-Regions_and_departements-2016.svg.png 2x" data-file-width="2000" data-file-height="1922" /></a></span>\n<div style="position:absolute;top:25.175142857144%;left:51.596329113919%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left:-12.6em;text-align:right;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris SG</a></b></span></div></div></div>\n<div style="position:absolute;top:8.2928571428576%;left:56.058544303792%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a></b></span></div></div></div>\n<div style="position:absolute;top:54.628190476193%;left:67.314240506322%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a></b></span></div></div></div>\n<div style="position:absolute;top:57.717238095241%;left:64.475759493664%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top: 0.10em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a></b></span></div></div></div>\n<div style="position:absolute;top:78.128761904766%;left:70.694746835436%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top: 0.10em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de<br />Marseille</a></b></span></div></div></div>\n<div style="position:absolute;top:75.135619047623%;left:61.244999999994%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top: 0.10em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a></b></span></div></div></div>\n<div style="position:absolute;top:21.349333333334%;left:62.225886075943%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a></b></span></div></div></div>\n<div style="position:absolute;top:74.188857142861%;left:82.670569620245%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top: 0.10em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a></b></span></div></div></div>\n<div style="position:absolute;top:72.983904761908%;left:64.304113924044%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a></b></span></div></div></div>\n<div style="position:absolute;top:27.872380952382%;left:85.772848101257%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top: 0.10em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg</a></b></span></div></div></div>\n<div style="position:absolute;top:32.216571428573%;left:26.089936708858%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Stade_rennais_Football_Club" title="Stade rennais Football Club">Stade rennais FC</a></b></span></div></div></div>\n<div style="position:absolute;top:38.369904761907%;left:33.216329113921%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest"> SCO d\xe2\x80\x99Angers</a></b></span></div></div></div>\n<div style="position:absolute;top:22.673333333334%;left:75.795632911385%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a></b></span></div></div></div>\n<div style="position:absolute;top:40.777428571431%;left:26.875822784807%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left:-12.6em;text-align:right;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a></b></span></div></div></div>\n<div style="position:absolute;top:29.615333333335%;left:8.316012658227%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.75em;left: -6em;text-align:center;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois</a></b></span></div></div></div>\n<div style="position:absolute;top:63.449714285717%;left:33.043227848098%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left:-12.6em;text-align:right;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a></b></span></div></div></div>\n<div style="position:absolute;top:75.193809523813%;left:45.849367088603%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-0.80em;left:-12.6em;text-align:right;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a></b></span></div></div></div>\n<div style="position:absolute;top:15.294666666667%;left:51.238924050628%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.65em;left:-12.5em;text-align:right;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a></b></span></div></div></div>\n<div style="position:absolute;top:73.919904761908%;left:83.700063291131%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a></b></span></div></div></div>\n<div style="position:absolute;top:39.790095238097%;left:68.61689873417%;width:0px;height:0px;margin:0;padding:0;line-height:0px;"><div style="position:relative;top:-8px;left:-8px;width:16px;height:16px;"><span class="mw-default-size noviewer" typeof="mw:File"><span><img alt="Localisation de la ville" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/16px-City_locator_4.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/24px-City_locator_4.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/21/City_locator_4.svg/32px-City_locator_4.svg.png 2x" data-file-width="16" data-file-height="16" /></span></span></div><div style="position:relative;top:-17px;"><div style="font-size:90%;position:relative;top:-1.65em;left: 0.5em;text-align:left;width:12em;line-height:1.2em;"><span class="toponyme"><b><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a></b></span></div></div></div>\n</div></td></tr></tbody></table>\n</div><div class="thumbcaption">\n<div class="magnify"><span typeof="mw:File"><a href="/wiki/Fichier:France_relief_location_map.jpg" title="Voir l\xe2\x80\x99image vierge"><img alt="Voir l\xe2\x80\x99image vierge" src="//upload.wikimedia.org/wikipedia/commons/6/6b/Magnify-clip.png" decoding="async" width="15" height="11" class="mw-file-element" data-file-width="15" data-file-height="11" /></a></span></div>\nLocalisation des clubs engag\xc3\xa9s dans le championnat.</div></div></td></tr></tbody></table></div>\n<table class="wikitable sortable" style="font-size:90%;line-height:15px;text-align:center">\n<tbody><tr>\n<th scope="col">Club\n</th>\n<th scope="col">Derni\xc3\xa8re<br />mont\xc3\xa9e\n</th>\n<th scope="col">Budget<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span class="cite_crochet">[</span>3<span class="cite_crochet">]</span></a></sup><br />en M<a href="/wiki/Euro" title="Euro">\xe2\x82\xac</a>\n</th>\n<th scope="col">Classement<br /><a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">2018-2019</a>\n</th>\n<th scope="col">Entra\xc3\xaeneur\n</th>\n<th scope="col">Depuis\n</th>\n<th scope="col">Stade\n</th>\n<th scope="col">Capacit\xc3\xa9<br />en L1<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite_crochet">[</span>4<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col">Nombre<br />de saisons<br />en L1\n</th></tr>\n<tr bgcolor="#97DEFF">\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>\n</td>\n<td>1974\n</td>\n<td>637\n</td>\n<td><span data-sort-value="101 !"></span><abbr class="abbr" title="Premier">1<sup>er</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Germany.svg" class="mw-file-description" title="Drapeau : Allemagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/20px-Flag_of_Germany.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/30px-Flag_of_Germany.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/40px-Flag_of_Germany.svg.png 2x" data-file-width="1000" data-file-height="600" /></a></span></span> <a href="/wiki/Thomas_Tuchel" title="Thomas Tuchel">Thomas Tuchel</a>\n</td>\n<td>2018\n</td>\n<td><a href="/wiki/Parc_des_Princes" title="Parc des Princes">Parc des Princes</a>\n</td>\n<td>47&#160;929\n</td>\n<td>46\n</td></tr>\n<tr bgcolor="#97DEFF">\n<td><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a>\n</td>\n<td>2000\n</td>\n<td>120\n</td>\n<td><span data-sort-value="102 !"></span><abbr class="abbr" title="Deuxi\xc3\xa8me">2<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Christophe_Galtier" title="Christophe Galtier">Christophe Galtier</a>\n</td>\n<td>2017\n</td>\n<td><a href="/wiki/Stade_Pierre-Mauroy" title="Stade Pierre-Mauroy">Stade Pierre-Mauroy</a>\n</td>\n<td>49&#160;712\n</td>\n<td>59\n</td></tr>\n<tr bgcolor="#97DEFF">\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td>1989\n</td>\n<td>310\n</td>\n<td><span data-sort-value="103 !"></span><abbr class="abbr" title="Troisi\xc3\xa8me">3<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Rudi_Garcia" title="Rudi Garcia">Rudi Garcia</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Parc_Olympique_lyonnais" title="Parc Olympique lyonnais">Groupama Stadium</a>\n</td>\n<td>57&#160;206\n</td>\n<td>60\n</td></tr>\n<tr bgcolor="#FFE052">\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td>2004\n</td>\n<td>100\n</td>\n<td><span data-sort-value="104 !"></span><abbr class="abbr" title="Quatri\xc3\xa8me">4<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Claude_Puel" title="Claude Puel">Claude Puel</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_Geoffroy-Guichard" title="Stade Geoffroy-Guichard">Stade Geoffroy-Guichard</a>\n</td>\n<td>41&#160;965\n</td>\n<td>66\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a>\n</td>\n<td>1996\n</td>\n<td>110\n</td>\n<td><span data-sort-value="105 !"></span><abbr class="abbr" title="Cinqui\xc3\xa8me">5<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Portugal.svg" class="mw-file-description" title="Drapeau : Portugal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/20px-Flag_of_Portugal.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/30px-Flag_of_Portugal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/40px-Flag_of_Portugal.svg.png 2x" data-file-width="600" data-file-height="400" /></a></span></span> <a href="/wiki/Andr%C3%A9_Villas-Boas" title="Andr\xc3\xa9 Villas-Boas">Andr\xc3\xa9 Villas-Boas</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_V%C3%A9lodrome" title="Stade V\xc3\xa9lodrome">Orange V\xc3\xa9lodrome</a>\n</td>\n<td>66&#160;226\n</td>\n<td>69\n</td></tr>\n<tr>\n<td><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a>\n</td>\n<td>2009\n</td>\n<td>40\n</td>\n<td><span data-sort-value="106 !"></span><abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Armenia.svg" class="mw-file-description" title="Drapeau : Arm\xc3\xa9nie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Flag_of_Armenia.svg/20px-Flag_of_Armenia.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Flag_of_Armenia.svg/40px-Flag_of_Armenia.svg.png 1.5x" data-file-width="1200" data-file-height="600" /></a></span></span><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Michel_Der_Zakarian" title="Michel Der Zakarian">Michel Der Zakarian</a>\n</td>\n<td>2017\n</td>\n<td><a href="/wiki/Stade_de_la_Mosson" title="Stade de la Mosson">Stade de la Mosson</a>\n</td>\n<td>22&#160;000\n</td>\n<td>27\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a>\n</td>\n<td>2002\n</td>\n<td>50\n</td>\n<td><span data-sort-value="107 !"></span><abbr class="abbr" title="Septi\xc3\xa8me">7<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Patrick_Vieira" title="Patrick Vieira">Patrick Vieira</a>\n</td>\n<td>2018\n</td>\n<td><a href="/wiki/Allianz_Riviera" title="Allianz Riviera">Allianz Riviera</a>\n</td>\n<td>35&#160;596\n</td>\n<td>60\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a>\n</td>\n<td>2018\n</td>\n<td>45\n</td>\n<td><span data-sort-value="108 !"></span><abbr class="abbr" title="Huiti\xc3\xa8me">8<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/David_Guion" title="David Guion">David Guion</a>\n</td>\n<td>2017\n</td>\n<td><a href="/wiki/Stade_Auguste-Delaune" title="Stade Auguste-Delaune">Stade Auguste-Delaune</a>\n</td>\n<td>20&#160;546\n</td>\n<td>35\n</td></tr>\n<tr>\n<td><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a>\n</td>\n<td>2018\n</td>\n<td>27\n</td>\n<td><span data-sort-value="109 !"></span><abbr class="abbr" title="Neuvi\xc3\xa8me">9<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Bernard_Blaquart" title="Bernard Blaquart">Bernard Blaquart</a>\n</td>\n<td>2015\n</td>\n<td><a href="/wiki/Stade_des_Costi%C3%A8res" title="Stade des Costi\xc3\xa8res">Stade des Costi\xc3\xa8res</a>\n</td>\n<td>15&#160;788\n</td>\n<td>35\n</td></tr>\n<tr bgcolor="#FFE052">\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a>\n</td>\n<td>1994\n</td>\n<td>65\n</td>\n<td><span data-sort-value="110 !"></span><abbr class="abbr" title="Dixi\xc3\xa8me">10<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Julien_St%C3%A9phan" title="Julien St\xc3\xa9phan">Julien St\xc3\xa9phan</a>\n</td>\n<td>2018\n</td>\n<td><a href="/wiki/Roazhon_Park" title="Roazhon Park">Roazhon Park</a>\n</td>\n<td>29&#160;194\n</td>\n<td>62\n</td></tr>\n<tr bgcolor="#FFF052">\n<td><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a>\n</td>\n<td>2017\n</td>\n<td>43\n</td>\n<td><span data-sort-value="111 !"></span><abbr class="abbr" title="Onzi\xc3\xa8me">11<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Thierry_Laurey" title="Thierry Laurey">Thierry Laurey</a>\n</td>\n<td>2016\n</td>\n<td><a href="/wiki/Stade_de_la_Meinau" title="Stade de la Meinau">Stade de la Meinau</a>\n</td>\n<td>26&#160;109\n</td>\n<td>58\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a>\n</td>\n<td>2013\n</td>\n<td>70\n</td>\n<td><span data-sort-value="112 !"></span><abbr class="abbr" title="Douzi\xc3\xa8me">12<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Christian_Gourcuff" title="Christian Gourcuff">Christian Gourcuff</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_de_la_Beaujoire" title="Stade de la Beaujoire">Stade de la Beaujoire - Louis Fonteneau</a>\n</td>\n<td>35&#160;322\n</td>\n<td>51\n</td></tr>\n\n<tr>\n<td><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\xe2\x80\x99Angers</a>\n</td>\n<td>2015\n</td>\n<td>32\n</td>\n<td><span data-sort-value="113 !"></span><abbr class="abbr" title="Treizi\xc3\xa8me">13<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/St%C3%A9phane_Moulin_(football)" title="St\xc3\xa9phane Moulin (football)">St\xc3\xa9phane Moulin</a>\n</td>\n<td>2011\n</td>\n<td><a href="/wiki/Stade_Raymond-Kopa" title="Stade Raymond-Kopa">Stade Raymond-Kopa</a>\n</td>\n<td>14&#160;582\n</td>\n<td>27\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a>\n</td>\n<td>1992\n</td>\n<td>70\n</td>\n<td><span data-sort-value="114 !"></span><abbr class="abbr" title="Quatorzi\xc3\xa8me">14<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Portugal.svg" class="mw-file-description" title="Drapeau : Portugal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/20px-Flag_of_Portugal.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/30px-Flag_of_Portugal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/40px-Flag_of_Portugal.svg.png 2x" data-file-width="600" data-file-height="400" /></a></span></span> <a href="/wiki/Paulo_Sousa_(football,_1970)" title="Paulo Sousa (football, 1970)">Paulo Sousa</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Matmut_Atlantique" class="mw-redirect" title="Matmut Atlantique">Matmut Atlantique</a>\n</td>\n<td>42&#160;115\n</td>\n<td>66\n</td></tr>\n<tr>\n<td><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a>\n</td>\n<td>2017\n</td>\n<td>30\n</td>\n<td><span data-sort-value="115 !"></span><abbr class="abbr" title="Quinzi\xc3\xa8me">15<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Slovenia.svg" class="mw-file-description" title="Drapeau : Slov\xc3\xa9nie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Flag_of_Slovenia.svg/20px-Flag_of_Slovenia.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Flag_of_Slovenia.svg/30px-Flag_of_Slovenia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Flag_of_Slovenia.svg/40px-Flag_of_Slovenia.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <a href="/wiki/Luka_Elsner" title="Luka Elsner">Luka Elsner</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_de_la_Licorne" title="Stade de la Licorne">Stade Cr\xc3\xa9dit Agricole la Licorne</a>\n</td>\n<td>12&#160;999\n</td>\n<td>2\n</td></tr>\n<tr>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a>\n</td>\n<td>2003\n</td>\n<td>35\n</td>\n<td><span data-sort-value="116 !"></span><abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Denis_Zanko" title="Denis Zanko">Denis Zanko</a>\n</td>\n<td>2020\n</td>\n<td><a href="/wiki/Stadium_de_Toulouse" title="Stadium de Toulouse">Stadium de Toulouse</a>\n</td>\n<td>33&#160;033\n</td>\n<td>32\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a>\n</td>\n<td>2013\n</td>\n<td>220\n</td>\n<td><span data-sort-value="117 !"></span><abbr class="abbr" title="Dix-septi\xc3\xa8me">17<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Spain.svg" class="mw-file-description" title="Drapeau : Espagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/20px-Flag_of_Spain.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/30px-Flag_of_Spain.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/40px-Flag_of_Spain.svg.png 2x" data-file-width="750" data-file-height="500" /></a></span></span> <a href="/wiki/Robert_Moreno" title="Robert Moreno">Robert Moreno</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_Louis-II" title="Stade Louis-II">Stade Louis-II</a>\n</td>\n<td>16&#160;500\n</td>\n<td>60\n</td></tr>\n<tr>\n<td><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a>\n</td>\n<td>2016\n</td>\n<td>38\n</td>\n<td><span data-sort-value="118 !"></span><abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr>\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/St%C3%A9phane_Jobard" title="St\xc3\xa9phane Jobard">St\xc3\xa9phane Jobard</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_Gaston-G%C3%A9rard" title="Stade Gaston-G\xc3\xa9rard">Parc des Sports Gaston-G\xc3\xa9rard</a>\n</td>\n<td>15&#160;459\n</td>\n<td>4\n</td></tr>\n<tr bgcolor="#a8fca8">\n<td><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a>\n</td>\n<td>2019\n</td>\n<td>40\n</td>\n<td><span data-sort-value="201 !"></span><abbr class="abbr" title="Premier">1<sup>er</sup></abbr> (<a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2018-2019" class="mw-redirect" title="Championnat de France de football de Ligue 2 2018-2019">Ligue 2</a>)\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Vincent_Hognon" title="Vincent Hognon">Vincent Hognon</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_Saint-Symphorien" title="Stade Saint-Symphorien">Stade Saint-Symphorien</a>\n</td>\n<td>25&#160;865\n</td>\n<td>61\n</td></tr>\n<tr bgcolor="#a8fca8">\n<td><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a>\n</td>\n<td>2019\n</td>\n<td>30\n</td>\n<td><span data-sort-value="202 !"></span><abbr class="abbr" title="Deuxi\xc3\xa8me">2<sup>e</sup></abbr> (<a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2018-2019" class="mw-redirect" title="Championnat de France de football de Ligue 2 2018-2019">Ligue 2</a>)\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Olivier_Dall%27Oglio" title="Olivier Dall&#39;Oglio">Olivier Dall\'Oglio</a>\n</td>\n<td>2019\n</td>\n<td><a href="/wiki/Stade_Francis-Le_Bl%C3%A9" title="Stade Francis-Le Bl\xc3\xa9">Stade Francis-Le Bl\xc3\xa9</a>\n</td>\n<td>14&#160;920\n</td>\n<td>13\n</td></tr></tbody></table>\n<p><b>L\xc3\xa9gende des couleurs</b>\n</p>\n<div class="legende-bloc legende-bloc-vertical"><style data-mw-deduplicate="TemplateStyles:r160408543">.mw-parser-output .legende-bloc-centre{display:table;margin:0 auto;text-align:left}.mw-parser-output .legende-bloc ul li{font-size:90%}.mw-parser-output .legende-bloc-vertical ul li{list-style:none;margin:1px 0 0 -1.5em}.mw-parser-output .legende-bloc-vertical ul li li{list-style:none;margin:1px 0 0 -1.0em}</style><ul>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#97DEFF;border:1px solid gray;vertical-align:middle"></span><a href="/wiki/Ligue_des_champions_de_l%27UEFA_2019-2020#Phase_de_groupes" title="Ligue des champions de l&#39;UEFA 2019-2020">Phase de groupes</a> de la <a href="/wiki/Ligue_des_champions_de_l%27UEFA_2019-2020" title="Ligue des champions de l&#39;UEFA 2019-2020">Ligue des champions 2019-2020</a></li>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFE052;border:1px solid gray;vertical-align:middle"></span><a href="/wiki/Ligue_Europa_2019-2020#Phase_de_groupes" title="Ligue Europa 2019-2020">Phase de groupes</a> de la <a href="/wiki/Ligue_Europa_2019-2020" title="Ligue Europa 2019-2020">Ligue Europa 2019-2020</a></li>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFF052;border:1px solid gray;vertical-align:middle"></span><a href="/wiki/Ligue_Europa_2019-2020#Deuxi\xc3\xa8me_tour_de_qualification" title="Ligue Europa 2019-2020">Deuxi\xc3\xa8me tour de qualification</a> de la <a href="/wiki/Ligue_Europa_2019-2020" title="Ligue Europa 2019-2020">Ligue Europa 2019-2020</a></li>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#a8fca8;border:1px solid gray;vertical-align:middle"></span>Promu de <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2018-2019" class="mw-redirect" title="Championnat de France de football de Ligue 2 2018-2019">Ligue 2 2018-2019</a></li>\n</ul></div>\n<div class="mw-heading mw-heading3"><h3 id="Changements_d\'entra\xc3\xaeneur"><span id="Changements_d.27entra.C3.AEneur"></span>Changements d\'entra\xc3\xaeneur</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=2" title="Modifier la section\xe2\x80\xaf: Changements d&#39;entra\xc3\xaeneur" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=2" title="Modifier le code source de la section : Changements d&#39;entra\xc3\xaeneur"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<table class="wikitable sortable">\n<caption class="hidden">Changements d\'entra\xc3\xaeneur\n</caption>\n<tbody><tr>\n<th scope="col">Club\n</th>\n<th scope="col">Entra\xc3\xaeneur(s) partant(s)\n</th>\n<th scope="col">Motif du d\xc3\xa9part\n</th>\n<th scope="col">Date de d\xc3\xa9part\n</th>\n<th scope="col">Position\n</th>\n<th scope="col">Entra\xc3\xaeneur(s) arrivant(s)\n</th>\n<th scope="col">Date d\'arriv\xc3\xa9e\n</th></tr>\n<tr>\n<td><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Jean-Marc_Furlan" title="Jean-Marc Furlan">Jean-Marc Furlan</a>\n</td>\n<td>Contrat dans un autre club\n</td>\n<td>17 mai 2019\n</td>\n<td rowspan="8"><i>Pr\xc3\xa9-saison</i>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Olivier_Dall%27Oglio" title="Olivier Dall&#39;Oglio">Olivier Dall\'Oglio</a>\n</td>\n<td>26 mai 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Bruno_G%C3%A9n%C3%A9sio" class="mw-redirect" title="Bruno G\xc3\xa9n\xc3\xa9sio">Bruno G\xc3\xa9n\xc3\xa9sio</a>\n</td>\n<td>Fin de contrat\n</td>\n<td>18 mai 2019\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <a href="/wiki/Sylvinho" title="Sylvinho">Sylvinho</a>\n</td>\n<td>28 mai 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Rudi_Garcia" title="Rudi Garcia">Rudi Garcia</a>\n</td>\n<td>D\xc3\xa9mission\n</td>\n<td rowspan="2">22 mai 2019\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Portugal.svg" class="mw-file-description" title="Drapeau : Portugal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/20px-Flag_of_Portugal.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/30px-Flag_of_Portugal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/40px-Flag_of_Portugal.svg.png 2x" data-file-width="600" data-file-height="400" /></a></span></span> <a href="/wiki/Andr%C3%A9_Villas-Boas" title="Andr\xc3\xa9 Villas-Boas">Andr\xc3\xa9 Villas-Boas</a>\n</td>\n<td>28 mai 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Jean-Louis_Gasset" title="Jean-Louis Gasset">Jean-Louis Gasset</a>\n</td>\n<td>Retraite\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Ghislain_Printant" title="Ghislain Printant">Ghislain Printant</a>\n</td>\n<td>6 juin 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Christophe_P%C3%A9lissier_(football)" title="Christophe P\xc3\xa9lissier (football)">Christophe P\xc3\xa9lissier</a>\n</td>\n<td>Contrat dans un autre club\n</td>\n<td>28 mai 2019\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Slovenia.svg" class="mw-file-description" title="Drapeau : Slov\xc3\xa9nie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Flag_of_Slovenia.svg/20px-Flag_of_Slovenia.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Flag_of_Slovenia.svg/30px-Flag_of_Slovenia.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Flag_of_Slovenia.svg/40px-Flag_of_Slovenia.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <a href="/wiki/Luka_Elsner" title="Luka Elsner">Luka Elsner</a>\n</td>\n<td>19 juin 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Antoine_Kombouar%C3%A9" title="Antoine Kombouar\xc3\xa9">Antoine Kombouar\xc3\xa9</a>\n</td>\n<td>D\xc3\xa9mission\n</td>\n<td>9 juin 2019\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/St%C3%A9phane_Jobard" title="St\xc3\xa9phane Jobard">St\xc3\xa9phane Jobard</a>\n</td>\n<td>20 juin 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Bosnia_and_Herzegovina.svg" class="mw-file-description" title="Drapeau : Bosnie-Herz\xc3\xa9govine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Flag_of_Bosnia_and_Herzegovina.svg/20px-Flag_of_Bosnia_and_Herzegovina.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Flag_of_Bosnia_and_Herzegovina.svg/30px-Flag_of_Bosnia_and_Herzegovina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Flag_of_Bosnia_and_Herzegovina.svg/40px-Flag_of_Bosnia_and_Herzegovina.svg.png 2x" data-file-width="800" data-file-height="400" /></a></span></span><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Vahid_Halilhod%C5%BEi%C4%87" title="Vahid Halilhod\xc5\xbei\xc4\x87">Vahid Halilhod\xc5\xbei\xc4\x87</a>\n</td>\n<td>Consentement mutuel\n</td>\n<td>2 ao\xc3\xbbt 2019\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Patrick_Collot" title="Patrick Collot">Patrick Collot</a>\n</td>\n<td>5 ao\xc3\xbbt 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Patrick_Collot" title="Patrick Collot">Patrick Collot</a>\n</td>\n<td>Fin de l\'int\xc3\xa9rim\n</td>\n<td>8 ao\xc3\xbbt 2019\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Christian_Gourcuff" title="Christian Gourcuff">Christian Gourcuff</a>\n</td>\n<td>8 ao\xc3\xbbt 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Ghislain_Printant" title="Ghislain Printant">Ghislain Printant</a>\n</td>\n<td rowspan="2">Renvoi\n</td>\n<td>4 octobre 2019\n</td>\n<td><abbr class="abbr" title="Dix-neuvi\xc3\xa8me">19<sup>e</sup></abbr>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Claude_Puel" title="Claude Puel">Claude Puel</a>\n</td>\n<td>4 octobre 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <a href="/wiki/Sylvinho" title="Sylvinho">Sylvinho</a>\n</td>\n<td>7 octobre 2019\n</td>\n<td><abbr class="abbr" title="Quatorzi\xc3\xa8me">14<sup>e</sup></abbr>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/G%C3%A9rald_Baticle" title="G\xc3\xa9rald Baticle">G\xc3\xa9rald Baticle</a>\n</td>\n<td>7 octobre 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Spain.svg" class="mw-file-description" title="Drapeau : Espagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/20px-Flag_of_Spain.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/30px-Flag_of_Spain.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/40px-Flag_of_Spain.svg.png 2x" data-file-width="750" data-file-height="500" /></a></span></span> <a href="/wiki/Alain_Casanova" title="Alain Casanova">Alain Casanova</a>\n</td>\n<td>Consentement mutuel\n</td>\n<td>10 octobre 2019\n</td>\n<td><abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Denis_Zanko" title="Denis Zanko">Denis Zanko</a>\n</td>\n<td>10 octobre 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/G%C3%A9rald_Baticle" title="G\xc3\xa9rald Baticle">G\xc3\xa9rald Baticle</a>\n</td>\n<td rowspan="2">Fin de l\'int\xc3\xa9rim\n</td>\n<td rowspan="2">14 octobre 2019\n</td>\n<td><abbr class="abbr" title="Quatorzi\xc3\xa8me">14<sup>e</sup></abbr>&#160;\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Rudi_Garcia" title="Rudi Garcia">Rudi Garcia</a>\n</td>\n<td rowspan="2">14 octobre 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Denis_Zanko" title="Denis Zanko">Denis Zanko</a>\n</td>\n<td><abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Antoine_Kombouar%C3%A9" title="Antoine Kombouar\xc3\xa9">Antoine Kombouar\xc3\xa9</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Monaco_Football_Club" title="Association sportive de Monaco Football Club">AS Monaco</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Portugal.svg" class="mw-file-description" title="Drapeau : Portugal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/20px-Flag_of_Portugal.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/30px-Flag_of_Portugal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Portugal.svg/40px-Flag_of_Portugal.svg.png 2x" data-file-width="600" data-file-height="400" /></a></span></span> <a href="/wiki/Leonardo_Jardim" title="Leonardo Jardim">Leonardo Jardim</a>\n</td>\n<td rowspan="2">Renvoi\n</td>\n<td>28 d\xc3\xa9cembre 2019\n</td>\n<td><abbr class="abbr" title="Septi\xc3\xa8me">7<sup>e</sup></abbr>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Spain.svg" class="mw-file-description" title="Drapeau : Espagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/20px-Flag_of_Spain.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/30px-Flag_of_Spain.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/40px-Flag_of_Spain.svg.png 2x" data-file-width="750" data-file-height="500" /></a></span></span> <a href="/wiki/Robert_Moreno" title="Robert Moreno">Robert Moreno</a>\n</td>\n<td>28 d\xc3\xa9cembre 2019\n</td></tr>\n<tr>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Antoine_Kombouar%C3%A9" title="Antoine Kombouar\xc3\xa9">Antoine Kombouar\xc3\xa9</a>\n</td>\n<td>5 janvier 2020\n</td>\n<td><abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr>\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Denis_Zanko" title="Denis Zanko">Denis Zanko</a>\n</td>\n<td>5 janvier 2020\n</td></tr></tbody></table>\n<div class="mw-heading mw-heading2"><h2 id="Comp\xc3\xa9tition"><span id="Comp.C3.A9tition"></span>Comp\xc3\xa9tition</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=3" title="Modifier la section\xe2\x80\xaf: Comp\xc3\xa9tition" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=3" title="Modifier le code source de la section : Comp\xc3\xa9tition"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="mw-heading mw-heading3"><h3 id="R\xc3\xa8glement"><span id="R.C3.A8glement"></span>R\xc3\xa8glement</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=4" title="Modifier la section\xe2\x80\xaf: R\xc3\xa8glement" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=4" title="Modifier le code source de la section : R\xc3\xa8glement"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Le classement est calcul\xc3\xa9 avec le bar\xc3\xa8me de points suivant&#160;: une victoire vaut trois points, le match nul un. La d\xc3\xa9faite ne rapporte aucun point.\n</p><p>Les crit\xc3\xa8res de d\xc3\xa9partage sont inchang\xc3\xa9s depuis la saison 2017-2018. Ceux-ci se pr\xc3\xa9sentent ainsi&#160;:\n</p>\n<ol><li>plus grand nombre de points&#160;;</li>\n<li>plus grande <a href="/wiki/Diff%C3%A9rence_de_buts" title="Diff\xc3\xa9rence de buts">diff\xc3\xa9rence de buts</a> g\xc3\xa9n\xc3\xa9rale&#160;;</li>\n<li>plus grand nombre de points dans les confrontations directes&#160;;</li>\n<li>plus grande diff\xc3\xa9rence de buts particuli\xc3\xa8re&#160;;</li>\n<li>plus grand nombre de buts dans les confrontations directes&#160;;</li>\n<li>plus grand nombre de buts \xc3\xa0 l\'ext\xc3\xa9rieur dans les confrontations directes&#160;;</li>\n<li>plus grand nombre de buts marqu\xc3\xa9s&#160;;</li>\n<li>plus grand nombre de buts marqu\xc3\xa9s \xc3\xa0 l\'ext\xc3\xa9rieur&#160;;</li>\n<li>plus grand nombre de buts marqu\xc3\xa9s sur une rencontre de championnat&#160;;</li>\n<li>meilleure place au Challenge du <a href="/wiki/Fair-play" title="Fair-play">fair-play</a> (1 point par joueur averti, 3 points par joueur exclu).</li></ol>\n<div class="mw-heading mw-heading3"><h3 id="Classement">Classement</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=5" title="Modifier la section\xe2\x80\xaf: Classement" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=5" title="Modifier le code source de la section : Classement"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<ul><li>Note&#160;: classement d\xc3\xa9finitif de la saison 2019-2020. Celle-ci est arr\xc3\xaat\xc3\xa9e \xc3\xa0 la fin de la <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr>&#160;journ\xc3\xa9e en raison de la <a href="/wiki/Pand%C3%A9mie_de_Covid-19_en_France" title="Pand\xc3\xa9mie de Covid-19 en France">pand\xc3\xa9mie de Covid-19 en France</a>. Les points sont remplac\xc3\xa9s par le quotient des points par match pour tenir compte du match en moins du RC Strasbourg Alsace et du Paris Saint-Germain. En cas d\'\xc3\xa9galit\xc3\xa9, la diff\xc3\xa9rence de but particuli\xc3\xa8re est retenue si tous les matchs entre \xc3\xa9quipes concern\xc3\xa9es ont pu avoir lieu&#160;; dans le cas inverse la diff\xc3\xa9rence de but g\xc3\xa9n\xc3\xa9rale prime<sup id="cite_ref-covid_2-2" class="reference"><a href="#cite_note-covid-2"><span class="cite_crochet">[</span>2<span class="cite_crochet">]</span></a></sup>.</li></ul>\n<table class="wikitable gauche" style="text-align:center; line-height:16px;">\n<caption>Classement\n</caption>\n<tbody><tr style="">\n<th scope="col">Rang\n</th>\n<th scope="col" style="width:200px">\xc3\x89quipe\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Points">Pts</span>\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Matchs jou\xc3\xa9s">J</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Matchs gagn\xc3\xa9s">G</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Matchs nuls">N</span>\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Matchs perdus">P</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Buts pour">Bp</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Buts contre">Bc</span>\n</th>\n<th scope="col" style="width:25px"><span style="cursor:help;" title="Diff\xc3\xa9rence de buts">Diff</span>\n</th></tr>\n<tr class="notheme" style="color:black; background-color:#97DEFF;">\n<td><b>1</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><b><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></b> <b><abbr class="abbr" title="Tenant du titre"><sup>T</sup></abbr></b> <b><abbr class="abbr" title="Vainqueur de la Supercoupe"><sup>S</sup></abbr></b> <b><abbr class="abbr" title="Vainqueur de la coupe nationale"><sup>C</sup></abbr></b> <b><abbr class="abbr" title="Vainqueur de la coupe de la Ligue"><sup>L</sup></abbr></b></span>\n</td>\n<td><span class="nowrap"><b><span class="nowrap">68 <small>(2,52)</small></span></b></span>\n</td>\n<td>27\n</td>\n<td style="border-right-style:hidden">22\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>3\n</td>\n<td style="border-right-style:hidden">75\n</td>\n<td style="border-right-style:hidden">24</td>\n<td>+51\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#97DEFF;">\n<td><b>2</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a></span>\n</td>\n<td><span class="nowrap"><b>56 <small>(2,00)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">16\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td>4\n</td>\n<td style="border-right-style:hidden">41\n</td>\n<td style="border-right-style:hidden">29</td>\n<td>+12\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#97DEFF;">\n<td><b>3</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a></span>\n</td>\n<td><span class="nowrap"><b>50 <small>(1,79)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">15\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>8\n</td>\n<td style="border-right-style:hidden">38\n</td>\n<td style="border-right-style:hidden">24</td>\n<td>+14\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#FFE052;">\n<td><b>4</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a></span>\n</td>\n<td><span class="nowrap"><b>49 <small>(1,75)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">15\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>9\n</td>\n<td style="border-right-style:hidden">35\n</td>\n<td style="border-right-style:hidden">27</td>\n<td>+8\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#FFE052;">\n<td><b>5</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a></span>\n</td>\n<td><span class="nowrap"><b>41 <small>(1,46)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td>9\n</td>\n<td style="border-right-style:hidden">41\n</td>\n<td style="border-right-style:hidden">38</td>\n<td>+3\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#FFF052;">\n<td><b>6</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a></span>\n</td>\n<td><span class="nowrap"><b>41 <small>(1,46)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td>7\n</td>\n<td style="border-right-style:hidden">26\n</td>\n<td style="border-right-style:hidden">21</td>\n<td>+5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>7</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a></span>\n</td>\n<td><span class="nowrap"><b>40 <small>(1,43)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">42\n</td>\n<td style="border-right-style:hidden">27</td>\n<td>+15\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>8</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a></span>\n</td>\n<td><span class="nowrap"><b>40 <small>(1,43)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">35\n</td>\n<td style="border-right-style:hidden">34</td>\n<td>+1\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>9</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a></span>\n</td>\n<td><span class="nowrap"><b>40 <small>(1,43)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">44\n</td>\n<td style="border-right-style:hidden">44</td>\n<td>0\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>10</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a></span>\n</td>\n<td><span class="nowrap"><b>38 <small>(1,41)</small></b></span>\n</td>\n<td>27\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>11\n</td>\n<td style="border-right-style:hidden">32\n</td>\n<td style="border-right-style:hidden">32</td>\n<td>0\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>11</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">Angers SCO</a></span>\n</td>\n<td><span class="nowrap"><b>39 <small>(1,39)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>11\n</td>\n<td style="border-right-style:hidden">28\n</td>\n<td style="border-right-style:hidden">33</td>\n<td>-5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>12</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a></span>\n</td>\n<td><span class="nowrap"><b>37 <small>(1,32)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">9\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td>9\n</td>\n<td style="border-right-style:hidden">40\n</td>\n<td style="border-right-style:hidden">34</td>\n<td>+6\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>13</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a></span>\n</td>\n<td><span class="nowrap"><b>37 <small>(1,32)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">28\n</td>\n<td style="border-right-style:hidden">31</td>\n<td>-3\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>14</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a> <b><abbr class="abbr" title="Promu"><sup>P</sup></abbr></b></span>\n</td>\n<td><span class="nowrap"><b>34 <small>(1,21)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">34\n</td>\n<td style="border-right-style:hidden">37</td>\n<td>-3\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>15</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a> <b><abbr class="abbr" title="Promu"><sup>P</sup></abbr></b></span>\n</td>\n<td><span class="nowrap"><b>34 <small>(1,21)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">27\n</td>\n<td style="border-right-style:hidden">35</td>\n<td>-8\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>16</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a></span>\n</td>\n<td><span class="nowrap"><b>30 <small>(1,07)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td style="border-right-style:hidden">9\n</td>\n<td>12\n</td>\n<td style="border-right-style:hidden">27\n</td>\n<td style="border-right-style:hidden">37</td>\n<td>-10\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>17</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a></span>\n</td>\n<td><span class="nowrap"><b>30 <small>(1,07)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">29\n</td>\n<td style="border-right-style:hidden">45</td>\n<td>-16\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>18</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a></span>\n</td>\n<td><span class="nowrap"><b>27 <small>(0,96)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">29\n</td>\n<td style="border-right-style:hidden">44</td>\n<td>-15\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#FFCCCC;">\n<td><b>19</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a></span>\n</td>\n<td><span class="nowrap"><b>23 <small>(0,82)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">31\n</td>\n<td style="border-right-style:hidden">50</td>\n<td>-19\n</td></tr>\n<tr class="notheme" style="color:black; background-color:#FFCCCC;">\n<td><b>20</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a></span>\n</td>\n<td><span class="nowrap"><b>13 <small>(0,46)</small></b></span>\n</td>\n<td>28\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>21\n</td>\n<td style="border-right-style:hidden">22\n</td>\n<td style="border-right-style:hidden">58</td>\n<td>-36\n</td></tr></tbody></table>\n<div style="background-color: var(--background-color-neutral-subtle); color: var(--color-base-subtle); float:left; padding:5px; border:1px solid var(--border-color-base)">\n<dl><dt>Qualifications europ\xc3\xa9ennes</dt>\n<dt><a href="/wiki/Ligue_des_champions_de_l%27UEFA_2020-2021" title="Ligue des champions de l&#39;UEFA 2020-2021">Ligue des champions 2020-2021</a></dt></dl>\n  <div class="legende-bloc legende-bloc-vertical"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r160408543" /><ul><li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#97DEFF;border:1px solid gray;vertical-align:middle"></span><b><abbr class="abbr" title="Premier">1<sup>er</sup></abbr>, <abbr class="abbr" title="Deuxi\xc3\xa8me">2<sup>e</sup></abbr> et <abbr class="abbr" title="Troisi\xc3\xa8me">3<sup>e</sup></abbr></b>&#160;: phase de groupes</li></ul></div>\n<dl><dt><a href="/wiki/Ligue_Europa_2020-2021" title="Ligue Europa 2020-2021">Ligue Europa 2020-2021</a></dt></dl>\n  <div class="legende-bloc legende-bloc-vertical"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r160408543" /><ul><li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFE052;border:1px solid gray;vertical-align:middle"></span><b><abbr class="abbr" title="Quatri\xc3\xa8me">4<sup>e</sup></abbr> et <abbr class="abbr" title="Cinqui\xc3\xa8me">5<sup>e</sup></abbr></b>&#160;: phase de groupes</li>\n  <li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFF052;border:1px solid gray;vertical-align:middle"></span><b><abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr></b>&#160;: deuxi\xc3\xa8me tour de qualification</li></ul></div>\n<dl><dt>Rel\xc3\xa9gation en <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2020-2021" class="mw-redirect" title="Championnat de France de football de Ligue 2 2020-2021">Ligue 2 2020-2021</a></dt></dl>\n  <div class="legende-bloc legende-bloc-vertical"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r160408543" /><ul><li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFCCCC;border:1px solid gray;vertical-align:middle"></span><b><abbr class="abbr" title="Dix-neuvi\xc3\xa8me">19<sup>e</sup></abbr> et <abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr></b>&#160;: rel\xc3\xa9gation en <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2" class="mw-redirect" title="Championnat de France de football de Ligue 2">Ligue 2</a></li></ul></div>\n<dl><dt>Abr\xc3\xa9viations</dt></dl>\n  <div class="legende-bloc legende-bloc-vertical"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r160408543" /><ul><li><b>T</b>\xe2\x80\xaf: <a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">Tenant du titre</a></li>\n  <li><b>C</b>\xe2\x80\xaf: Vainqueur de la <a href="/wiki/Coupe_de_France_de_football_2019-2020" title="Coupe de France de football 2019-2020">Coupe de France 2019-2020</a></li>\n  <li><b>L</b>\xe2\x80\xaf: Vainqueur de la <a href="/wiki/Coupe_de_la_Ligue_fran%C3%A7aise_de_football_2019-2020" title="Coupe de la Ligue fran\xc3\xa7aise de football 2019-2020">Coupe de la Ligue 2019-2020</a></li>\n  <li><b>S</b>\xe2\x80\xaf: Vainqueur du <a href="/wiki/Troph%C3%A9e_des_champions_2019" title="Troph\xc3\xa9e des champions 2019">Troph\xc3\xa9e des champions 2019</a></li>\n  <li><b>P</b>\xe2\x80\xaf: Promus de <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2018-2019" class="mw-redirect" title="Championnat de France de football de Ligue 2 2018-2019">Ligue 2 2018-2019</a></li>\n</ul></div>\n</div>\n<div class="clear" style="clear:both;"></div>\n<div class="mw-heading mw-heading3"><h3 id="Leader_par_journ\xc3\xa9e"><span id="Leader_par_journ.C3.A9e"></span>Leader par journ\xc3\xa9e</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=6" title="Modifier la section\xe2\x80\xaf: Leader par journ\xc3\xa9e" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=6" title="Modifier le code source de la section : Leader par journ\xc3\xa9e"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="timeline-wrapper"><map name="timeline_i222qnmfi82hg92x0jx5fefpsxu1l5c"><area shape="rect" href="/wiki/Paris_Saint%2DGermain_Football_Club" coords="452,12,671,33" title="Paris Saint-Germain Football Club" alt="Paris Saint-Germain Football Club" /><area shape="rect" href="/wiki/Stade_rennais_football_club" coords="78,12,136,33" title="Stade rennais football club" alt="Stade rennais football club" /><area shape="rect" href="/wiki/Olympique_lyonnais" coords="15,12,112,33" title="Olympique lyonnais" alt="Olympique lyonnais" /></map><img usemap="#timeline_i222qnmfi82hg92x0jx5fefpsxu1l5c" src="//upload.wikimedia.org/wikipedia/fr/timeline/i222qnmfi82hg92x0jx5fefpsxu1l5c.png" /></div>\n<div class="mw-heading mw-heading3"><h3 id="Lanterne_rouge_par_journ\xc3\xa9e"><span id="Lanterne_rouge_par_journ.C3.A9e"></span>Lanterne rouge par journ\xc3\xa9e</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=7" title="Modifier la section\xe2\x80\xaf: Lanterne rouge par journ\xc3\xa9e" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=7" title="Modifier le code source de la section : Lanterne rouge par journ\xc3\xa9e"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="timeline-wrapper"><map name="timeline_syudjuupjndb10dgc2x0pcb4guv1lik"><area shape="rect" href="/wiki/Toulouse_Football_Club" coords="665,12,824,33" title="Toulouse Football Club" alt="Toulouse Football Club" /><area shape="rect" href="/wiki/N%C3%AEmes_Olympique" coords="389,12,514,33" title="N\xc3\xaemes Olympique" alt="N\xc3\xaemes Olympique" /><area shape="rect" href="/wiki/Dijon_Football_C%C3%B4te%2Dd%27Or" coords="348,12,406,33" title="Dijon Football C\xc3\xb4te-d&#39;Or" alt="Dijon Football C\xc3\xb4te-d&#39;Or" /><area shape="rect" href="/wiki/Racing_Club_de_Strasbourg_Alsace" coords="314,12,372,33" title="Racing Club de Strasbourg Alsace" alt="Racing Club de Strasbourg Alsace" /><area shape="rect" href="/wiki/Football_Club_de_Metz" coords="283,12,336,33" title="Football Club de Metz" alt="Football Club de Metz" /><area shape="rect" href="/wiki/Dijon_Football_C%C3%B4te%2Dd%27Or" coords="120,12,295,33" title="Dijon Football C\xc3\xb4te-d&#39;Or" alt="Dijon Football C\xc3\xb4te-d&#39;Or" /><area shape="rect" href="/wiki/Association_sportive_de_Monaco_football_club" coords="13,12,99,33" title="Association sportive de Monaco football club" alt="Association sportive de Monaco football club" /></map><img usemap="#timeline_syudjuupjndb10dgc2x0pcb4guv1lik" src="//upload.wikimedia.org/wikipedia/fr/timeline/syudjuupjndb10dgc2x0pcb4guv1lik.png" /></div>\n<div class="mw-heading mw-heading3"><h3 id="Matchs">Matchs</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=8" title="Modifier la section\xe2\x80\xaf: Matchs" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=8" title="Modifier le code source de la section : Matchs"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<table class="wikitable" style="text-align:center; line-height:16px; font-size:90%; margin-top: 0em;">\n<caption>Tableau de r\xc3\xa9sultats<small><i> \xe2\x80\x94 mise \xc3\xa0 jour&#160;: 8 mars 2020</i></small>\n</caption>\n<tbody><tr>\n<td width="160"><span style="cursor:help;" title="L&#39;\xc3\xa9quipe qui re\xc3\xa7oit est indiqu\xc3\xa9e dans la colonne de gauche, celle qui joue \xc3\xa0 l&#39;ext\xc3\xa9rieur dans la ligne du haut."><b><span class="nowrap">R\xc3\xa9sultats (\xe2\x96\xbcdom., \xe2\x96\xbaext.)</span></b></span>\n</td>\n<td style="width:30px;"><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">ASC</a></td>\n<td style="width:30px;"><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO</a></td>\n<td style="width:30px;"><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">GDB</a></td>\n<td style="width:30px;&quot;"><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">SB29</a></td>\n<td style="width:30px;"><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">DFCO</a></td>\n<td style="width:30px;"><a href="/wiki/LOSC_Lille_Association" class="mw-redirect" title="LOSC Lille Association">LOSC</a></td>\n<td style="width:30px;"><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">&#160;OL</a>&#160;</td>\n<td style="width:30px;"><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">OM</a></td>\n<td style="width:30px;"><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FCM</a></td>\n<td style="width:30px;"><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">ASM</a></td>\n<td style="width:30px;"><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">MHSC</a></td>\n<td style="width:30px;"><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FCN</a></td>\n<td style="width:30px;"><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGCN</a></td>\n<td style="width:30px;"><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">NO</a></td>\n<td style="width:30px;"><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">PSG</a></td>\n<td style="width:30px;"><a href="/wiki/Stade_de_Reims" title="Stade de Reims">SDR</a></td>\n<td style="width:30px;"><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">SRFC</a></td>\n<td style="width:30px;"><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">ASSE</a></td>\n<td style="width:30px;"><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RCSA</a></td>\n<td style="width:30px;"><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">TFC</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a>\n</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">4-4</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-4</td>\n<td bgcolor="#FFFDD0">0-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">Angers SCO</a>\n</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-4</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">4-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a>\n</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">6-0</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a>\n</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">3-2</td>\n<td bgcolor="#DFE7FF">5-0</td>\n<td bgcolor="#FFFDD0">1-1\n</td></tr>\n<tr>\n<td><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a>\n</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFDD0">3-3</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">2-1\n</td></tr>\n<tr>\n<td><a href="/wiki/LOSC_Lille_Association" class="mw-redirect" title="LOSC Lille Association">LOSC Lille</a>\n</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#DFE7FF">3-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">6-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">3-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a>\n</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#DFE7FF">1-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a>\n</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFDD0">2-2\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a>\n</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">4-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">5-1</td>\n<td bgcolor="#FFE5E5">0-3</td>\n<td bgcolor="#FFE5E5">3-4</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFE5E5">1-4</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">3-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#FFFFFF">Ann.\n</td></tr>\n<tr>\n<td><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier H\xc3\xa9rault SC</a>\n</td>\n<td bgcolor="#DFE7FF">4-2</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">4-0</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#DFE7FF">3-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a>\n</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFE5E5">2-3</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-1\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a>\n</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#DFE7FF">4-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#FFE5E5">1-4</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-0\n</td></tr>\n<tr>\n<td><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a>\n</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-4</td>\n<td bgcolor="#FFE5E5">2-3</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">1-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>\n</td>\n<td bgcolor="#DFE7FF">4-1</td>\n<td bgcolor="#DFE7FF">4-0</td>\n<td bgcolor="#DFE7FF">4-3</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">4-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#DFE7FF">4-2</td>\n<td bgcolor="#DFE7FF">4-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">3-3</td>\n<td bgcolor="#DFE7FF">5-0</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">4-0\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a>\n</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a>\n</td>\n<td bgcolor="#DFE7FF">3-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">5-0</td>\n<td bgcolor="#DFE7FF">3-2</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-2\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#DFE7FF">4-1</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">0-4</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">2-2\n</td></tr>\n<tr>\n<td><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a>\n</td>\n<td bgcolor="#FFFDD0">0-0</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFDD0">1-1</td>\n<td bgcolor="#FFFDD0">2-2</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">4-1</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#DFE7FF">3-0</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="gray"></td>\n<td bgcolor="#DFE7FF">4-2\n</td></tr>\n<tr>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a>\n</td>\n<td bgcolor="#DFE7FF">2-0</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFE5E5">1-3</td>\n<td bgcolor="#FFE5E5">2-5</td>\n<td bgcolor="#DFE7FF">1-0</td>\n<td bgcolor="#DFE7FF">2-1</td>\n<td bgcolor="#FFE5E5">2-3</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">1-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="#FFE5E5">0-2</td>\n<td bgcolor="#FFFFFF">Ann.</td>\n<td bgcolor="#FFE5E5">0-1</td>\n<td bgcolor="gray">\n</td></tr>\n<tr>\n<td colspan="30" align="left" style="border-left-style:hidden; border-right-style:hidden; border-bottom-style:hidden">\n<div class="legende-bloc legende-bloc-vertical"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r160408543" /><ul>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#DFE7FF;border:1px solid gray;vertical-align:middle"></span>Victoire \xc3\xa0 domicile</li>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFFDD0;border:1px solid gray;vertical-align:middle"></span>Match nul</li>\n<li><span class="legende" style="margin-right:.3em;display:inline-block;width:1.3em;height:1.3em;webkit-print-color-adjust:exact;color-adjust:exact;background:#FFE5E5;border:1px solid gray;vertical-align:middle"></span>Victoire \xc3\xa0 l\'ext\xc3\xa9rieur</li>\n</ul></div>\n</td></tr></tbody></table>\n<p><b>Ann.</b>&#160;: Annul\xc3\xa9\n</p>\n<div class="mw-heading mw-heading4"><h4 id="Barrages_de_rel\xc3\xa9gation"><span id="Barrages_de_rel.C3.A9gation"></span>Barrages de rel\xc3\xa9gation</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=9" title="Modifier la section\xe2\x80\xaf: Barrages de rel\xc3\xa9gation" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=9" title="Modifier le code source de la section : Barrages de rel\xc3\xa9gation"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Les barrages de rel\xc3\xa9gation consistent en une <a href="/wiki/Match_aller-retour" title="Match aller-retour">confrontation aller-retour</a> entre le dix-huiti\xc3\xa8me de Ligue 1 et le vainqueur du match 2 des barrages de <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2019-2020#Barrages_de_promotion" class="mw-redirect" title="Championnat de France de football de Ligue 2 2019-2020">Ligue 2 2019-2020</a>. Le vainqueur de ces barrages obtient une place pour le championnat de Ligue 1 2020-2021 tandis que le perdant va en Ligue 2. Ces barrages sont annul\xc3\xa9s en raison de la <a href="/wiki/Pand%C3%A9mie_de_Covid-19_en_France" title="Pand\xc3\xa9mie de Covid-19 en France">pand\xc3\xa9mie de Covid-19</a>.\n</p>\n<table width="100%" style="line-height:1.4; margin-bottom:0.0em; border-spacing:0px 2px; background:var(--couleur-fond-boite-grise, #f9f9f9); color:inherit;" id="T1M1">\n\n<tbody><tr style="line-height:14px;">\n<td width="20%" align="center" style="font-size:95%"><b>Match aller</b>\n</td>\n<td width="23%" align="right">(L2) Vainqueur des barrages d\'accession de la <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2019-2020" class="mw-redirect" title="Championnat de France de football de Ligue 2 2019-2020">Ligue 2 2019-2020</a>\n</td>\n<td width="10%" align="center"><span class="nowrap"><i><b><style data-mw-deduplicate="TemplateStyles:r216721251">.mw-parser-output .texte-rouge{color:var(--color-destructive,#ff0000)}html.skin-theme-clientpref-day .mw-parser-output .texte-rouge{color:#ff0000}</style><span class="texte-rouge">Annul\xc3\xa9</span></b></i></span>\n</td>\n<td width="23%" align="left"><abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> de la Ligue 1 (L1)\n</td>\n<td width="23%" align="left">Stade du vainqueur des barrages de la Ligue 2\n</td></tr>\n<tr>\n<td align="center" valign="top" style="font-size:90%" rowspan="1">\n</td>\n<td>\n</td>\n<td align="center" valign="top">\n</td>\n<td>\n</td>\n<td align="left" valign="top" colspan="2" style="font-size:85%" rowspan="1">\n</td></tr></tbody></table>\n<hr />\n<table width="100%" style="line-height:1.4; margin-bottom:0.0em; border-spacing:0px 2px; background:var(--couleur-fond-boite-grise, #f9f9f9); color:inherit;" id="T1M2">\n\n<tbody><tr style="line-height:14px;">\n<td width="20%" align="center" style="font-size:95%"><b>Match retour</b>\n</td>\n<td width="23%" align="right">(L1) <abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> de la Ligue 1\n</td>\n<td width="10%" align="center"><span class="nowrap"><i><b><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216721251" /><span class="texte-rouge">Annul\xc3\xa9</span></b></i></span>\n</td>\n<td width="23%" align="left">Vainqueur des barrages d\'accession de la <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2019-2020" class="mw-redirect" title="Championnat de France de football de Ligue 2 2019-2020">Ligue 2 2019-2020</a> (L2)\n</td>\n<td width="23%" align="left">Stade du <abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> de la Ligue 1\n</td></tr>\n<tr>\n<td align="center" valign="top" style="font-size:90%" rowspan="1">\n</td>\n<td>\n</td>\n<td align="center" valign="top">\n</td>\n<td>\n</td>\n<td align="left" valign="top" colspan="2" style="font-size:85%" rowspan="1">\n</td></tr></tbody></table>\n<div class="mw-heading mw-heading2"><h2 id="Statistiques">Statistiques</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=10" title="Modifier la section\xe2\x80\xaf: Statistiques" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=10" title="Modifier le code source de la section : Statistiques"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="mw-heading mw-heading3"><h3 id="Domicile_et_ext\xc3\xa9rieur"><span id="Domicile_et_ext.C3.A9rieur"></span>Domicile et ext\xc3\xa9rieur</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=11" title="Modifier la section\xe2\x80\xaf: Domicile et ext\xc3\xa9rieur" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=11" title="Modifier le code source de la section : Domicile et ext\xc3\xa9rieur"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<table width="100%">\n<tbody><tr>\n<td width="50%">\n<table class="wikitable gauche" style="text-align:center; line-height:16px;">\n<caption>Classement domicile\n</caption>\n<tbody><tr style="">\n<th scope="col">Rang\n</th>\n<th scope="col" style="width:200px">\xc3\x89quipe\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Points">Pts</span>\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Matchs jou\xc3\xa9s">J</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Matchs gagn\xc3\xa9s">G</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Matchs nuls">N</span>\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Matchs perdus">P</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Buts pour">Bp</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Buts contre">Bc</span>\n</th>\n<th scope="col" style="width:25px"><span style="cursor:help;" title="Diff\xc3\xa9rence de buts">Diff</span>\n</th></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>1</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></span>\n</td>\n<td><span class="nowrap"><b>37</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">12\n</td>\n<td style="border-right-style:hidden">1\n</td>\n<td>1\n</td>\n<td style="border-right-style:hidden">44\n</td>\n<td style="border-right-style:hidden">11</td>\n<td>+33\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>2</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/LOSC_Lille_Association" class="mw-redirect" title="LOSC Lille Association">LOSC Lille</a></span>\n</td>\n<td><span class="nowrap"><b>35</b></span>\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">24\n</td>\n<td style="border-right-style:hidden">9</td>\n<td>+15\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>3</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a></span>\n</td>\n<td><span class="nowrap"><b>32</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">26\n</td>\n<td style="border-right-style:hidden">10</td>\n<td>+16\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>4</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_rennais_Football_Club" title="Stade rennais Football Club">Stade rennais FC</a></span>\n</td>\n<td><span class="nowrap"><b>29</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">9\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>3\n</td>\n<td style="border-right-style:hidden">25\n</td>\n<td style="border-right-style:hidden">14</td>\n<td>+11\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>5</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a></span>\n</td>\n<td><span class="nowrap"><b>28</b></span>\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>3\n</td>\n<td style="border-right-style:hidden">28\n</td>\n<td style="border-right-style:hidden">20</td>\n<td>+8\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>6</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a></span>\n</td>\n<td><span class="nowrap"><b>28</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">21\n</td>\n<td style="border-right-style:hidden">14</td>\n<td>+7\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>7</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\xe2\x80\x99Angers</a></span>\n</td>\n<td><span class="nowrap"><b>27</b></span>\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td>4\n</td>\n<td style="border-right-style:hidden">20\n</td>\n<td style="border-right-style:hidden">13</td>\n<td>+7\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>8</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a></span>\n</td>\n<td><span class="nowrap"><b>26</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>4\n</td>\n<td style="border-right-style:hidden">29\n</td>\n<td style="border-right-style:hidden">22</td>\n<td>+7\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>9</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a></span>\n</td>\n<td><span class="nowrap"><b>24</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">21\n</td>\n<td style="border-right-style:hidden">11</td>\n<td>+10\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>10</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a></span>\n</td>\n<td><span class="nowrap"><b>24</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td>3\n</td>\n<td style="border-right-style:hidden">22\n</td>\n<td style="border-right-style:hidden">14</td>\n<td>+8\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>11</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a></span>\n</td>\n<td><span class="nowrap"><b>24</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">20\n</td>\n<td style="border-right-style:hidden">15</td>\n<td>+5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>12</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a></span>\n</td>\n<td><span class="nowrap"><b>22</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">12\n</td>\n<td style="border-right-style:hidden">7</td>\n<td>+5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>13</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a></span>\n</td>\n<td><span class="nowrap"><b>20</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>6\n</td>\n<td style="border-right-style:hidden">17\n</td>\n<td style="border-right-style:hidden">15</td>\n<td>+2\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>14</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a></span>\n</td>\n<td><span class="nowrap"><b>20</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>6\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">11</td>\n<td>0\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>15</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a></span>\n</td>\n<td><span class="nowrap"><b>19</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>4\n</td>\n<td style="border-right-style:hidden">17\n</td>\n<td style="border-right-style:hidden">7</td>\n<td>+10\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>16</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a></span>\n</td>\n<td><span class="nowrap"><b>19</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>5\n</td>\n<td style="border-right-style:hidden">18\n</td>\n<td style="border-right-style:hidden">17</td>\n<td>+1\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>17</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a></span>\n</td>\n<td><span class="nowrap"><b>18</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>4\n</td>\n<td style="border-right-style:hidden">15\n</td>\n<td style="border-right-style:hidden">18</td>\n<td>-3\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>18</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a></span>\n</td>\n<td><span class="nowrap"><b>17</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>4\n</td>\n<td style="border-right-style:hidden">19\n</td>\n<td style="border-right-style:hidden">12</td>\n<td>+7\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>19</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a></span>\n</td>\n<td><span class="nowrap"><b>14</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>6\n</td>\n<td style="border-right-style:hidden">17\n</td>\n<td style="border-right-style:hidden">23</td>\n<td>-6\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>20</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a></span>\n</td>\n<td><span class="nowrap"><b>9</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">0\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">24</td>\n<td>-13\n</td></tr></tbody></table>\n</td>\n<td valign="top" align="right" width="50%">\n<table class="wikitable gauche" style="text-align:center; line-height:16px;">\n<caption>Classement ext\xc3\xa9rieur\n</caption>\n<tbody><tr style="">\n<th scope="col">Rang\n</th>\n<th scope="col" style="width:200px">\xc3\x89quipe\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Points">Pts</span>\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Matchs jou\xc3\xa9s">J</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Matchs gagn\xc3\xa9s">G</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Matchs nuls">N</span>\n</th>\n<th scope="col" style="width:20px"><span style="cursor:help;" title="Matchs perdus">P</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Buts pour">Bp</span>\n</th>\n<th scope="col" style="width:20px;border-right-style:hidden"><span style="cursor:help;" title="Buts contre">Bc</span>\n</th>\n<th scope="col" style="width:25px"><span style="cursor:help;" title="Diff\xc3\xa9rence de buts">Diff</span>\n</th></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>1</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></span>\n</td>\n<td><span class="nowrap"><b>31</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td style="border-right-style:hidden">1\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">31\n</td>\n<td style="border-right-style:hidden">13</td>\n<td>+18\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>2</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a></span>\n</td>\n<td><span class="nowrap"><b>28</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>2\n</td>\n<td style="border-right-style:hidden">20\n</td>\n<td style="border-right-style:hidden">15</td>\n<td>+5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>3</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a></span>\n</td>\n<td><span class="nowrap"><b>21</b></span>\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td>6\n</td>\n<td style="border-right-style:hidden">25\n</td>\n<td style="border-right-style:hidden">20</td>\n<td>+5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>4</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_rennais_Football_Club" title="Stade rennais Football Club">Stade rennais FC</a></span>\n</td>\n<td><span class="nowrap"><b>21</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td>5\n</td>\n<td style="border-right-style:hidden">13\n</td>\n<td style="border-right-style:hidden">10</td>\n<td>+3\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>5</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a></span>\n</td>\n<td><span class="nowrap"><b>20</b></span>\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>5\n</td>\n<td style="border-right-style:hidden">21\n</td>\n<td style="border-right-style:hidden">22</td>\n<td>-1\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>6</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a></span>\n</td>\n<td><span class="nowrap"><b>19</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>5\n</td>\n<td style="border-right-style:hidden">14\n</td>\n<td style="border-right-style:hidden">14</td>\n<td>0\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>7</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a></span>\n</td>\n<td><span class="nowrap"><b>17</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>7\n</td>\n<td style="border-right-style:hidden">17\n</td>\n<td style="border-right-style:hidden">20</td>\n<td>-3\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>8</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a></span>\n</td>\n<td><span class="nowrap"><b>15</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>5\n</td>\n<td style="border-right-style:hidden">9\n</td>\n<td style="border-right-style:hidden">18</td>\n<td>-9\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>9</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a></span>\n</td>\n<td><span class="nowrap"><b>14</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>6\n</td>\n<td style="border-right-style:hidden">15\n</td>\n<td style="border-right-style:hidden">22</td>\n<td>-7\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>10</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/LOSC_Lille_Association" class="mw-redirect" title="LOSC Lille Association">LOSC Lille</a></span>\n</td>\n<td><span class="nowrap"><b>14</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>7\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">18</td>\n<td>-7\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>11</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a></span>\n</td>\n<td><span class="nowrap"><b>14</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td>8\n</td>\n<td style="border-right-style:hidden">10\n</td>\n<td style="border-right-style:hidden">18</td>\n<td>-8\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>12</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a></span>\n</td>\n<td><span class="nowrap"><b>13</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>6\n</td>\n<td style="border-right-style:hidden">13\n</td>\n<td style="border-right-style:hidden">18</td>\n<td>-5\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>13</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\xe2\x80\x99Angers</a></span>\n</td>\n<td><span class="nowrap"><b>12</b></span>\n</td>\n<td>13\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td>7\n</td>\n<td style="border-right-style:hidden">8\n</td>\n<td style="border-right-style:hidden">20</td>\n<td>-12\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>14</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a></span>\n</td>\n<td><span class="nowrap"><b>12</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td style="border-right-style:hidden">0\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">14\n</td>\n<td style="border-right-style:hidden">27</td>\n<td>-13\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>15</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a></span>\n</td>\n<td><span class="nowrap"><b>10</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">2\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>8\n</td>\n<td style="border-right-style:hidden">13\n</td>\n<td style="border-right-style:hidden">26</td>\n<td>-13\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>16</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a></span>\n</td>\n<td><span class="nowrap"><b>9</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">1\n</td>\n<td style="border-right-style:hidden">6\n</td>\n<td>7\n</td>\n<td style="border-right-style:hidden">14\n</td>\n<td style="border-right-style:hidden">27</td>\n<td>-13\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>17</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a></span>\n</td>\n<td><span class="nowrap"><b>8</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">1\n</td>\n<td style="border-right-style:hidden">5\n</td>\n<td>8\n</td>\n<td style="border-right-style:hidden">9\n</td>\n<td style="border-right-style:hidden">24</td>\n<td>-15\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>18</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a></span>\n</td>\n<td><span class="nowrap"><b>7</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">1\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>9\n</td>\n<td style="border-right-style:hidden">12\n</td>\n<td style="border-right-style:hidden">29</td>\n<td>-17\n</td></tr>\n<tr class="notheme" style="color:black; background-color:white;">\n<td><b>19</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a></span>\n</td>\n<td><span class="nowrap"><b>6</b></span>\n</td>\n<td>14\n</td>\n<td style="border-right-style:hidden">1\n</td>\n<td style="border-right-style:hidden">3\n</td>\n<td>10\n</td>\n<td style="border-right-style:hidden">7\n</td>\n<td style="border-right-style:hidden">22</td>\n<td>-15\n</td></tr>\n<tr class="notheme" style="color:black; background-color:rgb(249,249,249);">\n<td><b>20</b>\n</td>\n<td style="text-align:left"><span class="nowrap"><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a></span>\n</td>\n<td><span class="nowrap"><b>4</b></span>\n</td>\n<td>15\n</td>\n<td style="border-right-style:hidden">0\n</td>\n<td style="border-right-style:hidden">4\n</td>\n<td>11\n</td>\n<td style="border-right-style:hidden">11\n</td>\n<td style="border-right-style:hidden">34</td>\n<td>-23\n</td></tr></tbody></table>\n</td></tr></tbody></table>\n<div class="mw-heading mw-heading3"><h3 id="\xc3\x89volution_du_classement"><span id=".C3.89volution_du_classement"></span>\xc3\x89volution du classement</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=12" title="Modifier la section\xe2\x80\xaf: \xc3\x89volution du classement" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=12" title="Modifier le code source de la section : \xc3\x89volution du classement"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Le classement final est l\xc3\xa9g\xc3\xa8rement diff\xc3\xa9rent du classement \xc3\xa0 l\xe2\x80\x99issue de la derni\xc3\xa8re journ\xc3\xa9e jou\xc3\xa9e (la <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr>)&#160;: en effet, les points sont remplac\xc3\xa9s par le quotient des points par match pour tenir compte du match en moins (entre Strasbourg et Paris) et en cas d\xe2\x80\x99\xc3\xa9galit\xc3\xa9, la diff\xc3\xa9rence de but particuli\xc3\xa8re est retenue (mais uniquement si tous les matchs entre \xc3\xa9quipes concern\xc3\xa9es ont pu avoir lieu, dans le cas inverse la diff\xc3\xa9rence de but g\xc3\xa9n\xc3\xa9rale prime).\n</p><p>En raison de la crise sanitaire, le barrage est aussi annul\xc3\xa9 pour l\xe2\x80\x99\xc3\xa9quipe class\xc3\xa9e <abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> qui est automatiquement conserv\xc3\xa9 en Ligue 1 la saison suivante.\n</p><p>Apr\xc3\xa8s la fin de saison, les victoires de Paris dans les Coupes de France puis de la Ligue ouvrent les <abbr class="abbr" title="Cinqui\xc3\xa8me">5<sup>e</sup></abbr> et <abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr>&#160;places du championnat \xc3\xa0 la Ligue Europa. De m\xc3\xaame, le vainqueur de la Ligue Europa 2019-2020 est d\xc3\xa9j\xc3\xa0 qualifi\xc3\xa9 pour la Ligue des Champions via son championnat national, Rennes est alors automatiquement rebascul\xc3\xa9 en phase de poules de la Ligue des Champions sans avoir \xc3\xa0 passer par la phase de barrages.\n</p>\n<table class="wikitable sortable center" border="0" cellpadding="0" style="font-size:75%">\n<caption class="hidden">\xc3\x89volution du classement\n</caption>\n<tbody><tr>\n<th scope="col" width="39"><span class="nowrap">Journ\xc3\xa9e \xe2\x86\x92</span>\n</th>\n<th scope="col">1<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span class="cite_crochet">[</span>a<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col">2<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span class="cite_crochet">[</span>b<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col">3\n</th>\n<th scope="col">4\n</th>\n<th scope="col">5\n</th>\n<th scope="col">6\n</th>\n<th scope="col">7\n</th>\n<th scope="col">8\n</th>\n<th scope="col">9\n</th>\n<th scope="col">10\n</th>\n<th scope="col">11\n</th>\n<th scope="col">12<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite_crochet">[</span>\xce\xb1<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col">13\n</th>\n<th scope="col">14\n</th>\n<th scope="col">15<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite_crochet">[</span>\xce\xb2<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col">16<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite_crochet">[</span>\xce\xb3<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col">17\n</th>\n<th scope="col">18\n</th>\n<th scope="col">19\n</th>\n<th scope="col">20\n</th>\n<th scope="col">21\n</th>\n<th scope="col">22\n</th>\n<th scope="col">23\n</th>\n<th scope="col">24\n</th>\n<th scope="col">25\n</th>\n<th scope="col">26\n</th>\n<th scope="col">27\n</th>\n<th scope="col">28<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite_crochet">[</span>\xce\xb4<span class="cite_crochet">]</span></a></sup>\n</th>\n<th scope="col"><abbr class="abbr" title="Classement final, au quotient">Cl.Fin.</abbr>\n</th>\n<th scope="col"><abbr class="abbr" title="Journ\xc3\xa9es en t\xc3\xaate"><abbr class="abbr" title="Premier">1<sup>er</sup></abbr></abbr>\n</th>\n<th scope="col"><abbr class="abbr" title="Journ\xc3\xa9es barragiste">bar.</abbr>\n</th>\n<th scope="col"><abbr class="abbr" title="Journ\xc3\xa9es rel\xc3\xa9gable, barragiste inclus">rel.</abbr>\n</th></tr>\n<tr align="center">\n<th scope="col"><span class="nowrap">\xc3\x89quipe \xe2\x86\x93</span></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br /></th>\n<th scope="col"><br />\n</th>\n<th scope="col">\n</th></tr>\n<tr align="center">\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris SG</a>\n</td>\n<td bgcolor="#97DEFF">2</td>\n<td>8</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8"><i><b>1</b></i></td>\n<td bgcolor="#F7F6A8"><i><b>1</b></i></td>\n<td bgcolor="#F7F6A8"><i><b>1</b></i></td>\n<td bgcolor="#F7F6A8"><i><b>1</b></i></td>\n<td bgcolor="#F7F6A8"><i><b>1</b></i></td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8"><i><b>1</b></i></td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">25</td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Marseille</a>\n</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td>13</td>\n<td>8</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td>6</td>\n<td>5</td>\n<td>8</td>\n<td bgcolor="#FFE052">4</td>\n<td>7</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td></td>\n<td bgcolor="#FFE5E5">1</td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Rennes</a>\n</td>\n<td>8</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#FFE052">4</td>\n<td>9</td>\n<td>8</td>\n<td>10</td>\n<td>12</td>\n<td>9</td>\n<td><i><b>14</b></i></td>\n<td><i><b>10</b></i></td>\n<td><i><b>11</b></i></td>\n<td><i><b>11</b></i></td>\n<td><i><b>7</b></i></td>\n<td bgcolor="#FFE052"><i><b>4</b></i></td>\n<td bgcolor="#FFE052"><i><b>4</b></i></td>\n<td bgcolor="#CEEBFB"><i><b>3</b></i></td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#97DEFF">3</td>\n<td bgcolor="#F7F6A8">1</td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/LOSC_Lille_Association" class="mw-redirect" title="LOSC Lille Association">Lille</a>\n</td>\n<td>6</td>\n<td>10</td>\n<td bgcolor="#FFE052">4</td>\n<td>10</td>\n<td>5</td>\n<td>6</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td>7</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>5</td>\n<td>5</td>\n<td>10</td>\n<td>8</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td>7</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#FFE052">4</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">Nice</a>\n</td>\n<td>7</td>\n<td bgcolor="#97DEFF">2</td>\n<td>5</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>6</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>7</td>\n<td>6</td>\n<td>9</td>\n<td>11</td>\n<td>15</td>\n<td>13</td>\n<td>13</td>\n<td>15</td>\n<td>12</td>\n<td>14</td>\n<td>13</td>\n<td>14</td>\n<td>10</td>\n<td>11</td>\n<td>12</td>\n<td>8</td>\n<td>8</td>\n<td>11</td>\n<td>9</td>\n<td>10</td>\n<td>9</td>\n<td>6</td>\n<td bgcolor="#FFE052">5</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Reims</a>\n</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td>8</td>\n<td>6</td>\n<td>11</td>\n<td>10</td>\n<td>8</td>\n<td>9</td>\n<td>6</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#FFE052">4</td>\n<td>7</td>\n<td>8</td>\n<td>7</td>\n<td>10</td>\n<td><i><b>11</b></i></td>\n<td><i><b>9</b></i></td>\n<td><i><b>6</b></i></td>\n<td><i><b>6</b></i></td>\n<td>8</td>\n<td>11</td>\n<td>7</td>\n<td>7</td>\n<td>10</td>\n<td>8</td>\n<td>8</td>\n<td>8</td>\n<td>5</td>\n<td bgcolor="#FFF052">6</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Lyon</a>\n</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#F7F6A8">1</td>\n<td bgcolor="#97DEFF">2</td>\n<td>5</td>\n<td>8</td>\n<td>9</td>\n<td>11</td>\n<td>11</td>\n<td>14</td>\n<td>17</td>\n<td>13</td>\n<td>10</td>\n<td>14</td>\n<td>9</td>\n<td>7</td>\n<td>10</td>\n<td>7</td>\n<td>8</td>\n<td>12</td>\n<td>7</td>\n<td>5</td>\n<td>6</td>\n<td>6</td>\n<td>9</td>\n<td>11</td>\n<td>7</td>\n<td>5</td>\n<td>7</td>\n<td>7</td>\n<td bgcolor="#F7F6A8">2</td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier</a>\n</td>\n<td>16</td>\n<td>14</td>\n<td>12</td>\n<td>14</td>\n<td>12</td>\n<td>12</td>\n<td>10</td>\n<td>10</td>\n<td>7</td>\n<td>8</td>\n<td>10</td>\n<td>11</td>\n<td>6</td>\n<td>6</td>\n<td bgcolor="#FFE052">4</td>\n<td>6</td>\n<td>10</td>\n<td>12</td>\n<td>9</td>\n<td>6</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td>5</td>\n<td>5</td>\n<td>6</td>\n<td>9</td>\n<td>6</td>\n<td>8</td>\n<td>8</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">Monaco</a>\n</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>12</td>\n<td>16</td>\n<td>14</td>\n<td>11</td>\n<td>15</td>\n<td>11</td>\n<td>14</td>\n<td><i><b>14</b></i></td>\n<td><i><b>13</b></i></td>\n<td><i><b>11</b></i></td>\n<td><i><b>9</b></i></td>\n<td><i><b>7</b></i></td>\n<td>9</td>\n<td>13</td>\n<td>13</td>\n<td>10</td>\n<td>7</td>\n<td>5</td>\n<td>5</td>\n<td>7</td>\n<td>9</td>\n<td>9</td>\n<td></td>\n<td bgcolor="#FFE5E5">1</td>\n<td bgcolor="#FFCCCC">6\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">Strasbourg</a>\n</td>\n<td>11</td>\n<td>13</td>\n<td>17</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>16</td>\n<td>17</td>\n<td>13</td>\n<td>17</td>\n<td bgcolor="#FFCCCC">20</td>\n<td>16</td>\n<td>17</td>\n<td>16</td>\n<td>12</td>\n<td>13</td>\n<td>15</td>\n<td>15</td>\n<td>13</td>\n<td>11</td>\n<td>12</td>\n<td>8</td>\n<td>11</td>\n<td>9</td>\n<td>6</td>\n<td>7</td>\n<td>6</td>\n<td>10</td>\n<td><i><b>11</b></i></td>\n<td>10</td>\n<td></td>\n<td bgcolor="#FFE5E5">1</td>\n<td bgcolor="#FFCCCC">1\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">Angers</a>\n</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>11</td>\n<td>6</td>\n<td bgcolor="#FFE052">4</td>\n<td>7</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>5</td>\n<td>6</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>8</td>\n<td>12</td>\n<td>10</td>\n<td>8</td>\n<td>10</td>\n<td>9</td>\n<td>12</td>\n<td>13</td>\n<td>14</td>\n<td>14</td>\n<td>14</td>\n<td>13</td>\n<td>10</td>\n<td>11</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Bordeaux</a>\n</td>\n<td>17</td>\n<td>16</td>\n<td>9</td>\n<td>11</td>\n<td>9</td>\n<td>8</td>\n<td>5</td>\n<td>7</td>\n<td bgcolor="#FFE052">4</td>\n<td>6</td>\n<td>8</td>\n<td>6</td>\n<td>7</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>5</td>\n<td>7</td>\n<td>13</td>\n<td>13</td>\n<td>10</td>\n<td>10</td>\n<td>12</td>\n<td>8</td>\n<td>10</td>\n<td>12</td>\n<td>12</td>\n<td>12</td>\n<td>12</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">Nantes</a>\n</td>\n<td>13</td>\n<td>14</td>\n<td>11</td>\n<td>7</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>7</td>\n<td bgcolor="#FFE052">4</td>\n<td bgcolor="#CEEBFB">3</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#97DEFF">2</td>\n<td bgcolor="#CEEBFB">3</td>\n<td>9</td>\n<td>8</td>\n<td>6</td>\n<td>9</td>\n<td>6</td>\n<td>5</td>\n<td>5</td>\n<td bgcolor="#FFE052">4</td>\n<td>6</td>\n<td>9</td>\n<td>11</td>\n<td>12</td>\n<td>12</td>\n<td>11</td>\n<td>11</td>\n<td>13</td>\n<td>13</td>\n<td></td>\n<td></td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Brest</a>\n</td>\n<td>11</td>\n<td>12</td>\n<td>7</td>\n<td>12</td>\n<td>13</td>\n<td>15</td>\n<td>13</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>12</td>\n<td>9</td>\n<td>5</td>\n<td>9</td>\n<td>12</td>\n<td>13</td>\n<td>15</td>\n<td>12</td>\n<td>14</td>\n<td>15</td>\n<td>15</td>\n<td>14</td>\n<td>14</td>\n<td>14</td>\n<td>14</td>\n<td>13</td>\n<td>13</td>\n<td>13</td>\n<td>14</td>\n<td>14</td>\n<td>14</td>\n<td></td>\n<td bgcolor="#FFE5E5">1</td>\n<td>\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/FC_Metz" class="mw-redirect" title="FC Metz">Metz</a>\n</td>\n<td>10</td>\n<td bgcolor="#FFE052">4</td>\n<td>10</td>\n<td>15</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td>17</td>\n<td bgcolor="#FFCCCC">20</td>\n<td>16</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td>17</td>\n<td>16</td>\n<td>16</td>\n<td>16</td>\n<td>16</td>\n<td>15</td>\n<td>16</td>\n<td>15</td>\n<td>15</td>\n<td>15</td>\n<td></td>\n<td bgcolor="#FFE5E5">5</td>\n<td bgcolor="#FFCCCC">3\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon</a>\n</td>\n<td>15</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">20</td>\n<td>16</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>16</td>\n<td>16</td>\n<td>16</td>\n<td>16</td>\n<td>16</td>\n<td>17</td>\n<td>17</td>\n<td>17</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td>17</td>\n<td>16</td>\n<td>16</td>\n<td></td>\n<td bgcolor="#FFE5E5">4</td>\n<td bgcolor="#FFCCCC">9\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">St-\xc3\x89tienne</a>\n</td>\n<td>5</td>\n<td>6</td>\n<td>14</td>\n<td>16</td>\n<td>15</td>\n<td>17</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td>13</td>\n<td>10</td>\n<td>12</td>\n<td>8</td>\n<td bgcolor="#FFE052">4</td>\n<td>5</td>\n<td>9</td>\n<td>5</td>\n<td>8</td>\n<td>11</td>\n<td>14</td>\n<td>15</td>\n<td>15</td>\n<td>15</td>\n<td>15</td>\n<td>15</td>\n<td>16</td>\n<td>15</td>\n<td>16</td>\n<td>17</td>\n<td>17</td>\n<td></td>\n<td></td>\n<td bgcolor="#FFCCCC">2\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes</a>\n</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>13</td>\n<td>14</td>\n<td>11</td>\n<td>12</td>\n<td>15</td>\n<td>15</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFCCCC"><i><b>20</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>20</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>20</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>19</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>19</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>19</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>19</b></i></td>\n<td bgcolor="#FFCCCC"><i><b>19</b></i></td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>18</td>\n<td></td>\n<td bgcolor="#FFE5E5">8</td>\n<td bgcolor="#FFCCCC">13\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens</a>\n</td>\n<td>14</td>\n<td>9</td>\n<td>16</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>16</td>\n<td>14</td>\n<td>15</td>\n<td>16</td>\n<td>11</td>\n<td>13</td>\n<td>14</td>\n<td>12</td>\n<td>15</td>\n<td>16</td>\n<td>16</td>\n<td><i><b>17</b></i></td>\n<td><i><b>17</b></i></td>\n<td><i><b>17</b></i></td>\n<td bgcolor="#FFE5E5"><i><b>18</b></i></td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td></td>\n<td bgcolor="#FFE5E5">5</td>\n<td bgcolor="#FFCCCC">6\n</td></tr>\n<tr align="center">\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse</a>\n</td>\n<td>9</td>\n<td>7</td>\n<td>15</td>\n<td>9</td>\n<td>10</td>\n<td>13</td>\n<td>14</td>\n<td>14</td>\n<td bgcolor="#FFE5E5">18</td>\n<td>15</td>\n<td>17</td>\n<td bgcolor="#FFE5E5">18</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">19</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td bgcolor="#FFCCCC">20</td>\n<td></td>\n<td bgcolor="#FFE5E5">2</td>\n<td bgcolor="#FFCCCC">16\n</td></tr></tbody></table>\n<p>\xc3\x80 l\xe2\x80\x99issue de deux journ\xc3\xa9es diff\xc3\xa9rentes, deux \xc3\xa9quipes \xc3\xa9taient class\xc3\xa9es <i>ex \xc3\xa6quo</i> selon tous les points du r\xc3\xa8glement&#160;:\n</p>\n<div class="mw-references-wrap"><ol class="references">\n<li id="cite_note-5"><span class="mw-cite-backlink"><a href="#cite_ref-5">\xe2\x86\x91</a> </span><span class="reference-text">Brest et Strasbourg tous les deux \xc3\xa0 la <abbr class="abbr" title="Onzi\xc3\xa8me">11<sup>e</sup></abbr> place du classement apr\xc3\xa8s la <abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr>&#160;journ\xc3\xa9e&#160;;</span>\n</li>\n<li id="cite_note-6"><span class="mw-cite-backlink"><a href="#cite_ref-6">\xe2\x86\x91</a> </span><span class="reference-text">Montpellier et Nantes tous les deux \xc3\xa0 la <abbr class="abbr" title="Quatorzi\xc3\xa8me">14<sup>e</sup></abbr> place apr\xc3\xa8s la <abbr class="abbr" title="Deuxi\xc3\xa8me">2<sup>e</sup></abbr>&#160;journ\xc3\xa9e.</span>\n</li>\n</ol></div>\n<p>En gras et italique, les \xc3\xa9quipes comptant un match en retard (exemple&#160;: <i><b>14</b></i> pour Rennes \xc3\xa0 l\xe2\x80\x99issue de la <abbr class="abbr" title="Douzi\xc3\xa8me">12<sup>e</sup></abbr>&#160;journ\xc3\xa9e)&#160;: \n</p>\n<div class="mw-references-wrap"><ol class="references">\n<li id="cite_note-7"><span class="mw-cite-backlink"><a href="#cite_ref-7">\xe2\x86\x91</a> </span><span class="reference-text">N\xc3\xaemes-Rennes, match de la <abbr class="abbr" title="Douzi\xc3\xa8me">12<sup>e</sup></abbr>&#160;journ\xc3\xa9e report\xc3\xa9 en raison d\xe2\x80\x99un terrain impraticable \xc3\xa0 cause de fortes pluies, a \xc3\xa9t\xc3\xa9 jou\xc3\xa9 entre les <abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr> et <abbr class="abbr" title="Vingt et uni\xc3\xa8me">21<sup>e</sup></abbr>&#160;journ\xc3\xa9es le m\xc3\xaame jour que les rencontres Monaco-Paris (match report\xc3\xa9 de la <abbr class="abbr" title="Quinzi\xc3\xa8me">15<sup>e</sup></abbr>&#160;journ\xc3\xa9e) et Amiens-Reims (match report\xc3\xa9 de la <abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr>&#160;journ\xc3\xa9e).</span>\n</li>\n<li id="cite_note-8"><span class="mw-cite-backlink"><a href="#cite_ref-8">\xe2\x86\x91</a> </span><span class="reference-text">Monaco-Paris, match de la <abbr class="abbr" title="Quinzi\xc3\xa8me">15<sup>e</sup></abbr>&#160;journ\xc3\xa9e report\xc3\xa9 en raison des conditions m\xc3\xa9t\xc3\xa9orologiques, a \xc3\xa9t\xc3\xa9 jou\xc3\xa9 entre les <abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr> et <abbr class="abbr" title="Vingt et uni\xc3\xa8me">21<sup>e</sup></abbr>&#160;journ\xc3\xa9es le m\xc3\xaame jour que les rencontres N\xc3\xaemes-Rennes (match report\xc3\xa9 de la <abbr class="abbr" title="Douzi\xc3\xa8me">12<sup>e</sup></abbr>&#160;journ\xc3\xa9e) et Amiens-Reims (match report\xc3\xa9 de la <abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr>&#160;journ\xc3\xa9e). Hasard du calendrier, le match de la phase aller Monaco-Paris a donc eu lieu quelques jours apr\xc3\xa8s le match de la phase retour Paris-Monaco.</span>\n</li>\n<li id="cite_note-9"><span class="mw-cite-backlink"><a href="#cite_ref-9">\xe2\x86\x91</a> </span><span class="reference-text">Amiens-Reims, match de la <abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr>&#160;journ\xc3\xa9e report\xc3\xa9 en raison du brouillard, a \xc3\xa9t\xc3\xa9 jou\xc3\xa9 entre les <abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr> et <abbr class="abbr" title="Vingt et uni\xc3\xa8me">21<sup>e</sup></abbr>&#160;journ\xc3\xa9es le m\xc3\xaame jour que les rencontres N\xc3\xaemes-Rennes (match report\xc3\xa9 de la <abbr class="abbr" title="Douzi\xc3\xa8me">12<sup>e</sup></abbr>&#160;journ\xc3\xa9e) et Monaco-Paris (match report\xc3\xa9 de la <abbr class="abbr" title="Quinzi\xc3\xa8me">15<sup>e</sup></abbr>&#160;journ\xc3\xa9e).</span>\n</li>\n<li id="cite_note-10"><span class="mw-cite-backlink"><a href="#cite_ref-10">\xe2\x86\x91</a> </span><span class="reference-text">Strasbourg-Paris, match de la <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr>&#160;journ\xc3\xa9e, est report\xc3\xa9 \xc3\xa0 la suite d\xe2\x80\x99un arr\xc3\xaat\xc3\xa9 de la pr\xc3\xa9fecture du Bas-Rhin en raison de l\xe2\x80\x99<a href="/wiki/Pand%C3%A9mie_de_maladie_%C3%A0_coronavirus_de_2020_en_France" class="mw-redirect" title="Pand\xc3\xa9mie de maladie \xc3\xa0 coronavirus de 2020 en France">\xc3\xa9pid\xc3\xa9mie de maladie \xc3\xa0 coronavirus</a> et en particulier de la concentration de personnes touch\xc3\xa9es par la maladie dans le Haut-Rhin d\xe2\x80\x99o\xc3\xb9 provient une forte proportion de spectateurs \xc3\xa0 chaque match \xc3\xa0 domicile de Strasbourg. La rencontre est d\xe2\x80\x99abord reprogramm\xc3\xa9e \xc3\xa0 huis clos entre les <abbr class="abbr" title="Vingt-neuvi\xc3\xa8me">29<sup>e</sup></abbr> et <abbr class="abbr" title="Trenti\xc3\xa8me">30<sup>e</sup></abbr>&#160;journ\xc3\xa9es avant d\xe2\x80\x99\xc3\xaatre de nouveau report\xc3\xa9e lors de la suspension du championnat d\xc3\xa9cid\xc3\xa9e avant la <abbr class="abbr" title="Vingt-neuvi\xc3\xa8me">29<sup>e</sup></abbr>&#160;journ\xc3\xa9e \xc3\xa0 cause de cette m\xc3\xaame \xc3\xa9pid\xc3\xa9mie. Finalement, le match ne pourra jamais se jouer et la saison est d\xc3\xa9finitivement arr\xc3\xaat\xc3\xa9e \xc3\xa0 la <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr>&#160;journ\xc3\xa9e \xc3\xa0 la suite de la crise sanitaire qui touche la France.</span>\n</li>\n</ol></div>\n<div class="mw-heading mw-heading3"><h3 id="Buts_marqu\xc3\xa9s_par_journ\xc3\xa9e"><span id="Buts_marqu.C3.A9s_par_journ.C3.A9e"></span>Buts marqu\xc3\xa9s par journ\xc3\xa9e</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=13" title="Modifier la section\xe2\x80\xaf: Buts marqu\xc3\xa9s par journ\xc3\xa9e" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=13" title="Modifier le code source de la section : Buts marqu\xc3\xa9s par journ\xc3\xa9e"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div><p>\nCe graphique repr\xc3\xa9sente le nombre de buts marqu\xc3\xa9s lors de chaque journ\xc3\xa9e<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span class="cite_crochet">[</span>5<span class="cite_crochet">]</span></a></sup>.</p><div class="timeline-wrapper"><map name="timeline_ahpdrrycwv08la0m2onz9rmnozce8hp"></map><img usemap="#timeline_ahpdrrycwv08la0m2onz9rmnozce8hp" src="//upload.wikimedia.org/wikipedia/fr/timeline/ahpdrrycwv08la0m2onz9rmnozce8hp.png" /></div>\n<ul><li><i>La <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr> journ\xc3\xa9e ne compte que 9 matchs puisque celui entre Strasbourg et le PSG a \xc3\xa9t\xc3\xa9 d\xc3\xa9finitivement annul\xc3\xa9.</i></li></ul>\n<div class="mw-heading mw-heading3"><h3 id="Classement_des_buteurs">Classement des buteurs</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=14" title="Modifier la section\xe2\x80\xaf: Classement des buteurs" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=14" title="Modifier le code source de la section : Classement des buteurs"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div style="display: inline-block; vertical-align: top; margin-right: 2%;">\n<p><small><i>Mise \xc3\xa0 jour&#160;: <time class="nowrap date-lien" datetime="2020-04-30" data-sort-value="2020-04-30"><a href="/wiki/30_avril_en_sport" title="30 avril en sport">30 avril</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time></i></small>\n</p>\n</div>\n<table class="wikitable" style="text-align: center; font-size:90%;line-height:15px;">\n<tbody><tr>\n<th scope="col">&#160;\n</th>\n<th scope="col">Buteur\n</th>\n<th scope="col">Club\n</th>\n<th scope="col">Buts\n</th></tr>\n<tr bgcolor="gold">\n<td>1\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Kylian_Mbapp%C3%A9" title="Kylian Mbapp\xc3\xa9">Kylian Mbapp\xc3\xa9</a></td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></td>\n<td>18\n</td></tr>\n<tr bgcolor="silver">\n<td>2\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Wissam_Ben_Yedder" title="Wissam Ben Yedder">Wissam Ben Yedder</a></td>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a></td>\n<td>18\n</td></tr>\n<tr bgcolor="#cc9966">\n<td>3\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Moussa_Demb%C3%A9l%C3%A9_(football)" title="Moussa Demb\xc3\xa9l\xc3\xa9 (football)">Moussa Demb\xc3\xa9l\xc3\xa9</a></td>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a></td>\n<td>16\n</td></tr>\n<tr>\n<td>4\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Nigeria.svg" class="mw-file-description" title="Drapeau : Nigeria"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/20px-Flag_of_Nigeria.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/30px-Flag_of_Nigeria.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/40px-Flag_of_Nigeria.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <a href="/wiki/Victor_Osimhen" title="Victor Osimhen">Victor Osimhen</a></td>\n<td><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a></td>\n<td>13\n</td></tr>\n<tr>\n<td>5\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <a href="/wiki/Neymar" title="Neymar">Neymar</a></td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></td>\n<td>13\n</td></tr>\n<tr>\n<td>6\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Argentina.svg" class="mw-file-description" title="Drapeau : Argentine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/20px-Flag_of_Argentina.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/30px-Flag_of_Argentina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png 2x" data-file-width="800" data-file-height="500" /></a></span></span> <a href="/wiki/Mauro_Icardi" title="Mauro Icardi">Mauro Icardi</a></td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></td>\n<td>12\n</td></tr>\n<tr>\n<td>7\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Senegal.svg" class="mw-file-description" title="Drapeau : S\xc3\xa9n\xc3\xa9gal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/20px-Flag_of_Senegal.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/30px-Flag_of_Senegal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/40px-Flag_of_Senegal.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Habib_Diallo" title="Habib Diallo">Habib Diallo</a></td>\n<td><a href="/wiki/Football_Club_de_Metz" title="Football Club de Metz">FC Metz</a></td>\n<td>12\n</td></tr>\n<tr>\n<td>8\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Denmark.svg" class="mw-file-description" title="Drapeau : Danemark"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/20px-Flag_of_Denmark.svg.png" decoding="async" width="20" height="15" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/30px-Flag_of_Denmark.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/40px-Flag_of_Denmark.svg.png 2x" data-file-width="512" data-file-height="387" /></a></span></span> <a href="/wiki/Kasper_Dolberg" title="Kasper Dolberg">Kasper Dolberg</a></td>\n<td><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a></td>\n<td>11\n</td></tr>\n<tr>\n<td>9\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Argentina.svg" class="mw-file-description" title="Drapeau : Argentine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/20px-Flag_of_Argentina.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/30px-Flag_of_Argentina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png 2x" data-file-width="800" data-file-height="500" /></a></span></span> <a href="/wiki/Dar%C3%ADo_Benedetto" title="Dar\xc3\xado Benedetto">Dar\xc3\xado Benedetto</a></td>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a></td>\n<td>11\n</td></tr>\n<tr>\n<td>10\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Senegal.svg" class="mw-file-description" title="Drapeau : S\xc3\xa9n\xc3\xa9gal"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/20px-Flag_of_Senegal.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/30px-Flag_of_Senegal.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Flag_of_Senegal.svg/40px-Flag_of_Senegal.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/M%27Baye_Niang" title="M&#39;Baye Niang">M\'Baye Niang</a></td>\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a></td>\n<td>10\n</td></tr></tbody></table>\n<table style="border:1px #aaaaaa solid; border-collapse:collapse; font-size:90%;">\n<tbody><tr>\n<td><cite> Source&#160;: <a rel="nofollow" class="external text" href="https://www.ligue1.fr/classement/buteurs">Classement des buteurs sur le site de la Ligue 1</a></cite>\n</td></tr></tbody></table>\n<p>Il est \xc3\xa0 noter qu\'en cas d\'\xc3\xa9galit\xc3\xa9 et selon une d\xc3\xa9cision prise par la LFP, c\'est le buteur qui a marqu\xc3\xa9 le plus de buts dans le jeu qui est en t\xc3\xaate du classement<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span class="cite_crochet">[</span>6<span class="cite_crochet">]</span></a></sup>. <a href="/wiki/Wissam_Ben_Yedder" title="Wissam Ben Yedder">Wissam Ben Yedder</a> en a marqu\xc3\xa9 15 dans le jeu contre 18 pour <a href="/wiki/Kylian_Mbapp%C3%A9" title="Kylian Mbapp\xc3\xa9">Kylian Mbapp\xc3\xa9</a>.\n</p>\n<div class="mw-heading mw-heading4"><h4 id="Leader_par_journ\xc3\xa9e_2"><span id="Leader_par_journ.C3.A9e_2"></span>Leader par journ\xc3\xa9e</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=15" title="Modifier la section\xe2\x80\xaf: Leader par journ\xc3\xa9e" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=15" title="Modifier le code source de la section : Leader par journ\xc3\xa9e"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="timeline-wrapper"><map name="timeline_jdre71drc5o7gciyfxruloe5yjurymk"><area shape="rect" href="/wiki/Kylian_Mbapp%C3%A9" coords="871,12,985,33" title="Kylian Mbapp\xc3\xa9" alt="Kylian Mbapp\xc3\xa9" /><area shape="rect" href="/wiki/Wissam_Ben_Yedder" coords="640,12,771,33" title="Wissam Ben Yedder" alt="Wissam Ben Yedder" /><area shape="rect" href="/wiki/Moussa_Demb%C3%A9l%C3%A9_(football)" coords="425,12,550,33" title="Moussa Demb\xc3\xa9l\xc3\xa9 (football)" alt="Moussa Demb\xc3\xa9l\xc3\xa9 (football)" /><area shape="rect" href="/wiki/Wissam_Ben_Yedder" coords="316,12,447,33" title="Wissam Ben Yedder" alt="Wissam Ben Yedder" /><area shape="rect" href="/wiki/Victor_Osimhen" coords="226,12,340,33" title="Victor Osimhen" alt="Victor Osimhen" /><area shape="rect" href="/wiki/Moussa_Demb%C3%A9l%C3%A9_(football)" coords="148,12,250,33" title="Moussa Demb\xc3\xa9l\xc3\xa9 (football)" alt="Moussa Demb\xc3\xa9l\xc3\xa9 (football)" /><area shape="rect" href="/wiki/Memphis_Depay" coords="110,-1,174,20" title="Memphis Depay" alt="Memphis Depay" /><area shape="rect" href="/wiki/Victor_Osimhen" coords="70,12,145,33" title="Victor Osimhen" alt="Victor Osimhen" /><area shape="rect" href="/wiki/Memphis_Depay" coords="42,-1,105,20" title="Memphis Depay" alt="Memphis Depay" /><area shape="rect" href="/wiki/Victor_Osimhen" coords="2,12,77,33" title="Victor Osimhen" alt="Victor Osimhen" /></map><img usemap="#timeline_jdre71drc5o7gciyfxruloe5yjurymk" src="//upload.wikimedia.org/wikipedia/fr/timeline/jdre71drc5o7gciyfxruloe5yjurymk.png" /></div>\n<div class="mw-heading mw-heading3"><h3 id="Classement_des_passeurs">Classement des passeurs</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=16" title="Modifier la section\xe2\x80\xaf: Classement des passeurs" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=16" title="Modifier le code source de la section : Classement des passeurs"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div style="display: inline-block; vertical-align: top; margin-right: 2%;">\n<p><small><i>Mise \xc3\xa0 jour&#160;: <time class="nowrap date-lien" datetime="2020-03-01" data-sort-value="2020-03-01"><a href="/wiki/1er_mars_en_sport" title="1er mars en sport">1<sup>er</sup> mars</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time></i></small>\n</p>\n</div>\n<table class="wikitable" style="text-align: center; font-size:90%;line-height:15px;">\n<tbody><tr>\n<th scope="col">&#160;\n</th>\n<th scope="col">Passeur\n</th>\n<th scope="col">Club\n</th>\n<th scope="col">Pas.\n</th></tr>\n<tr bgcolor="gold">\n<td>1\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Argentina.svg" class="mw-file-description" title="Drapeau : Argentine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/20px-Flag_of_Argentina.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/30px-Flag_of_Argentina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png 2x" data-file-width="800" data-file-height="500" /></a></span></span> <a href="/wiki/%C3%81ngel_Di_Mar%C3%ADa" title="\xc3\x81ngel Di Mar\xc3\xada">\xc3\x81ngel Di Mar\xc3\xada</a></td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></td>\n<td>14\n</td></tr>\n<tr bgcolor="silver">\n<td>2\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Algeria.svg" class="mw-file-description" title="Drapeau : Alg\xc3\xa9rie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/20px-Flag_of_Algeria.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/40px-Flag_of_Algeria.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Islam_Slimani" title="Islam Slimani">Islam Slimani</a></td>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a></td>\n<td>8\n</td></tr>\n<tr bgcolor="#cc9966">\n<td>3\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Yoann_Court" title="Yoann Court">Yoann Court</a></td>\n<td><a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a></td>\n<td>7\n</td></tr>\n<tr>\n<td>4\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Pierre_Lees-Melou" title="Pierre Lees-Melou">Pierre Lees-Melou</a></td>\n<td><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a></td>\n<td>6\n</td></tr>\n<tr>\n<td>5\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <a href="/wiki/Neymar" title="Neymar">Neymar</a></td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></td>\n<td>6\n</td></tr>\n<tr>\n<td>6\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Jonathan_Ikon%C3%A9" title="Jonathan Ikon\xc3\xa9">Jonathan Ikon\xc3\xa9</a></td>\n<td><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a></td>\n<td>6\n</td></tr>\n<tr>\n<td>7\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Romain_Del_Castillo" title="Romain Del Castillo">Romain Del Castillo</a></td>\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a></td>\n<td>5\n</td></tr>\n<tr>\n<td>8\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Kylian_Mbapp%C3%A9" title="Kylian Mbapp\xc3\xa9">Kylian Mbapp\xc3\xa9</a></td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></td>\n<td>5\n</td></tr>\n<tr>\n<td>9\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Nigeria.svg" class="mw-file-description" title="Drapeau : Nigeria"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/20px-Flag_of_Nigeria.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/30px-Flag_of_Nigeria.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/40px-Flag_of_Nigeria.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <a href="/wiki/Moses_Simon" title="Moses Simon">Moses Simon</a></td>\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a></td>\n<td>5\n</td></tr>\n<tr>\n<td>10\n</td>\n<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Ga%C3%ABtan_Laborde" title="Ga\xc3\xabtan Laborde">Ga\xc3\xabtan Laborde</a></td>\n<td><a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier H\xc3\xa9rault SC</a></td>\n<td>5\n</td></tr></tbody></table>\n<table style="border:1px #aaaaaa solid; border-collapse:collapse; font-size:90%;">\n<tbody><tr>\n<td><cite>Source&#160;: <a rel="nofollow" class="external text" href="https://www.ligue1.fr/fr-FR/classement/passeurs">Classement officiel des passeurs de la Ligue 1</a></cite>\n</td></tr></tbody></table>\n<div class="mw-heading mw-heading4"><h4 id="Leader_par_journ\xc3\xa9e_3"><span id="Leader_par_journ.C3.A9e_3"></span>Leader par journ\xc3\xa9e</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=17" title="Modifier la section\xe2\x80\xaf: Leader par journ\xc3\xa9e" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=17" title="Modifier le code source de la section : Leader par journ\xc3\xa9e"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="timeline-wrapper"><map name="timeline_8m7xiu2e98sqkyaivwx4ydnyyfwtg0e"><area shape="rect" href="/wiki/%C3%81ngel_Di_Maria" coords="769,12,889,33" title="\xc3\x81ngel Di Maria" alt="\xc3\x81ngel Di Maria" /><area shape="rect" href="/wiki/Islam_Slimani" coords="416,12,524,33" title="Islam Slimani" alt="Islam Slimani" /><area shape="rect" href="/wiki/Hamari_Traor%C3%A9" coords="181,12,295,33" title="Hamari Traor\xc3\xa9" alt="Hamari Traor\xc3\xa9" /><area shape="rect" href="/wiki/Dimitri_Li%C3%A9nard" coords="108,12,233,33" title="Dimitri Li\xc3\xa9nard" alt="Dimitri Li\xc3\xa9nard" /><area shape="rect" href="/wiki/Mathias_Autret" coords="78,12,147,33" title="Mathias Autret" alt="Mathias Autret" /><area shape="rect" href="/wiki/Thiago_Mendes" coords="4,12,112,33" title="Thiago Mendes" alt="Thiago Mendes" /></map><img usemap="#timeline_8m7xiu2e98sqkyaivwx4ydnyyfwtg0e" src="//upload.wikimedia.org/wikipedia/fr/timeline/8m7xiu2e98sqkyaivwx4ydnyyfwtg0e.png" /></div>\n<div class="mw-heading mw-heading3"><h3 id="Affluence">Affluence</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=18" title="Modifier la section\xe2\x80\xaf: Affluence" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=18" title="Modifier le code source de la section : Affluence"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="mw-heading mw-heading4"><h4 id="Meilleures_affluences_de_la_saison">Meilleures affluences de la saison</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=19" title="Modifier la section\xe2\x80\xaf: Meilleures affluences de la saison" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=19" title="Modifier le code source de la section : Meilleures affluences de la saison"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<table class="wikitable">\n<caption>Classement des 10 affluences les plus importantes de la saison<sup id="cite_ref-affluences_lfp_13-0" class="reference"><a href="#cite_note-affluences_lfp-13"><span class="cite_crochet">[</span>7<span class="cite_crochet">]</span></a></sup><sup class="reference cite_virgule">,</sup><sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span class="cite_crochet">[</span>8<span class="cite_crochet">]</span></a></sup>\n</caption>\n<tbody><tr>\n<th scope="col">Rang\n</th>\n<th scope="col">Match\n</th>\n<th scope="col">Journ\xc3\xa9e\n</th>\n<th scope="col">Date\n</th>\n<th scope="col">Affluence\n</th></tr>\n<tr>\n<th scope="col">1\n</th>\n<td style="background:#fffcaf"><b><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a></b>\n</td>\n<td align="center"><b><abbr title="13e journ\xc3\xa9e">J13</abbr></b>\n</td>\n<td align="center"><b><time class="nowrap date-lien" datetime="2019-11-10" data-sort-value="2019-11-10"><a href="/wiki/10_novembre_en_sport" title="10 novembre en sport">10</a> <a href="/wiki/Novembre_2019_en_sport" class="mw-redirect" title="Novembre 2019 en sport">novembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time></b>\n</td>\n<td align="center"><b>65&#160;421</b>\n</td></tr>\n<tr>\n<th scope="col">2\n</th>\n<td style="background:#e5e5e5"><b><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/FC_Nantes" class="mw-redirect" title="FC Nantes">FC Nantes</a></b>\n</td>\n<td align="center"><b><abbr title="26e journ\xc3\xa9e">J26</abbr></b>\n</td>\n<td align="center"><b><time class="nowrap date-lien" datetime="2020-02-22" data-sort-value="2020-02-22"><a href="/wiki/22_f%C3%A9vrier_en_sport" title="22 f\xc3\xa9vrier en sport">22 f\xc3\xa9vrier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time></b>\n</td>\n<td align="center"><b>60&#160;430</b>\n</td></tr>\n<tr>\n<th scope="col">3\n</th>\n<td style="background:#eecc99"><b><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a></b>\n</td>\n<td align="center"><b><abbr title="19e journ\xc3\xa9e">J19</abbr></b>\n</td>\n<td align="center"><b><time class="nowrap date-lien" datetime="2019-12-21" data-sort-value="2019-12-21"><a href="/wiki/21_d%C3%A9cembre_en_sport" title="21 d\xc3\xa9cembre en sport">21</a> <a href="/wiki/D%C3%A9cembre_2019_en_sport" class="mw-redirect" title="D\xc3\xa9cembre 2019 en sport">d\xc3\xa9cembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time></b>\n</td>\n<td align="center"><b>59&#160;043</b>\n</td></tr>\n<tr>\n<th scope="col">4\n</th>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/SCO_Angers" class="mw-redirect" title="SCO Angers">SCO Angers</a>\n</td>\n<td align="center"><abbr title="21e journ\xc3\xa9e">J21</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2020-01-25" data-sort-value="2020-01-25"><a href="/wiki/25_janvier_en_sport" title="25 janvier en sport">25</a> <a href="/wiki/Janvier_2020_en_sport" title="Janvier 2020 en sport">janvier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time>\n</td>\n<td align="center">55&#160;761\n</td></tr>\n<tr>\n<th scope="col">5\n</th>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> - <a href="/wiki/Paris_Saint-Germain" class="mw-redirect" title="Paris Saint-Germain">Paris Saint-Germain</a>\n</td>\n<td align="center"><abbr title="6e journ\xc3\xa9e">J6</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2019-09-22" data-sort-value="2019-09-22"><a href="/wiki/22_septembre_en_sport" title="22 septembre en sport">22</a> <a href="/wiki/Septembre_2019_en_sport" class="mw-redirect" title="Septembre 2019 en sport">septembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time>\n</td>\n<td align="center">54&#160;583\n</td></tr>\n<tr>\n<th scope="col">6\n</th>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse</a>\n</td>\n<td align="center"><abbr title="24e journ\xc3\xa9e">J24</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2020-02-08" data-sort-value="2020-02-08"><a href="/wiki/8_f%C3%A9vrier_en_sport" title="8 f\xc3\xa9vrier en sport">8 f\xc3\xa9vrier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time>\n</td>\n<td align="center">53&#160;995\n</td></tr>\n<tr>\n<th scope="col">7\n</th>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a>\n</td>\n<td align="center"><abbr title="12ere journ\xc3\xa9e">J12</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2019-11-02" data-sort-value="2019-11-02"><a href="/wiki/2_novembre_en_sport" title="2 novembre en sport">2</a> <a href="/wiki/Novembre_2019_en_sport" class="mw-redirect" title="Novembre 2019 en sport">novembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time>\n</td>\n<td align="center">53&#160;321\n</td></tr>\n<tr>\n<th scope="col">8\n</th>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> - <a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a>\n</td>\n<td align="center"><abbr title="1e journ\xc3\xa9e">J1</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2019-08-10" data-sort-value="2019-08-10"><a href="/wiki/10_ao%C3%BBt_en_sport" title="10 ao\xc3\xbbt en sport">10</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time>\n</td>\n<td align="center">52&#160;887\n</td></tr>\n<tr>\n<th scope="col">9\n</th>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> - <a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td align="center"><abbr title="27e journ\xc3\xa9e">J27</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2020-03-01" data-sort-value="2020-03-01"><a href="/wiki/1er_mars_en_sport" title="1er mars en sport">1<sup>er</sup> mars</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time>\n</td>\n<td align="center">52&#160;772\n</td></tr>\n<tr>\n<th scope="col">10\n</th>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> - <a href="/wiki/Girondins_de_Bordeaux" class="mw-redirect" title="Girondins de Bordeaux">Girondins de Bordeaux</a>\n</td>\n<td align="center"><abbr title="4e journ\xc3\xa9e">J4</abbr>\n</td>\n<td align="center"><time class="nowrap date-lien" datetime="2019-08-31" data-sort-value="2019-08-31"><a href="/wiki/31_ao%C3%BBt_en_sport" title="31 ao\xc3\xbbt en sport">31</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time>\n</td>\n<td align="center">52&#160;327\n</td></tr>\n\n</tbody></table>\n<div class="mw-heading mw-heading4"><h4 id="Affluences_par_journ\xc3\xa9e"><span id="Affluences_par_journ.C3.A9e"></span>Affluences par journ\xc3\xa9e</h4><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=20" title="Modifier la section\xe2\x80\xaf: Affluences par journ\xc3\xa9e" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=20" title="Modifier le code source de la section : Affluences par journ\xc3\xa9e"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div><p>\nCe graphique repr\xc3\xa9sente le nombre de spectateurs pr\xc3\xa9sents dans les stades lors de chaque journ\xc3\xa9e<sup id="cite_ref-affluences_lfp_13-1" class="reference"><a href="#cite_note-affluences_lfp-13"><span class="cite_crochet">[</span>7<span class="cite_crochet">]</span></a></sup>.</p><div class="timeline-wrapper"><map name="timeline_5evxrbp7r78uwqgo3uc07spcgjbrnd3"></map><img usemap="#timeline_5evxrbp7r78uwqgo3uc07spcgjbrnd3" src="//upload.wikimedia.org/wikipedia/fr/timeline/5evxrbp7r78uwqgo3uc07spcgjbrnd3.png" /></div><p><b>*</b>&#160;: Affluence communiqu\xc3\xa9e par le club \xc3\xa0 domicile mais non valid\xc3\xa9e par le service \xc2\xab&#160;Stades&#160;\xc2\xbb de la <a href="/wiki/Ligue_de_football_professionnel_(France)" title="Ligue de football professionnel (France)">LFP</a>, ou journ\xc3\xa9e de championnat pas encore disput\xc3\xa9e int\xc3\xa9gralement\n</p><div class="mw-heading mw-heading2"><h2 id="Bilan_de_la_saison">Bilan de la saison</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=21" title="Modifier la section\xe2\x80\xaf: Bilan de la saison" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=21" title="Modifier le code source de la section : Bilan de la saison"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<center>\n<table class="wikitable" style="text-align:center" width="80%">\n<caption><b>Tableau d\'honneur</b>\n</caption>\n<tbody><tr>\n<td colspan="2" bgcolor="LightSkyBlue"><b>Championnat de France de football 2019-2020</b>\n</td></tr>\n<tr>\n<td>Champion\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain Football Club</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Champion_d%27automne" title="Champion d&#39;automne">Champion d\'automne</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain Football Club</a>\n</td></tr>\n<tr>\n<td colspan="3" bgcolor="SkyBlue"><b>Coupes et troph\xc3\xa9es</b>\n</td></tr>\n<tr>\n<td>Vainqueur du <a href="/wiki/Troph%C3%A9e_des_champions_2019" title="Troph\xc3\xa9e des champions 2019">Troph\xc3\xa9e des champions 2019</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain Football Club</a>\n</td></tr>\n<tr>\n<td>Vainqueur de la <a href="/wiki/Coupe_de_France_de_football_2019-2020" title="Coupe de France de football 2019-2020">Coupe de France 2019-2020</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain Football Club</a>\n</td></tr>\n<tr>\n<td>Vainqueur de la <a href="/wiki/Coupe_de_la_Ligue_fran%C3%A7aise_de_football_2019-2020" title="Coupe de la Ligue fran\xc3\xa7aise de football 2019-2020">Coupe de la Ligue 2019-2020</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain Football Club</a>\n</td></tr>\n<tr>\n<td colspan="2" bgcolor="LightBlue"><b>Qualifications continentales</b>\n</td></tr>\n<tr>\n<td rowspan="3"><a href="/wiki/Ligue_des_champions_de_l%27UEFA_2020-2021" title="Ligue des champions de l&#39;UEFA 2020-2021">Ligue des champions de l\'UEFA 2020-2021</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain Football Club</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_rennais_Football_Club" title="Stade rennais Football Club">Stade rennais Football Club</a>\n</td></tr>\n<tr>\n<td rowspan="3"><a href="/wiki/Ligue_Europa_2020-2021" title="Ligue Europa 2020-2021">Ligue Europa 2020-2021</a>\n</td>\n<td><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">Olympique Gymnaste Club Nice</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a>\n</td></tr>\n<tr>\n<td colspan="2" bgcolor="PowderBlue"><b>Promotions et rel\xc3\xa9gations</b>\n</td></tr>\n<tr>\n<td rowspan="2">Promus en <a href="/wiki/Championnat_de_France_de_football" title="Championnat de France de football">Ligue 1</a>\n</td>\n<td><a href="/wiki/Football_Club_de_Lorient" title="Football Club de Lorient">Football Club de Lorient</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Racing_Club_de_Lens" title="Racing Club de Lens">Racing Club de Lens</a>\n</td></tr>\n<tr>\n<td rowspan="2">Rel\xc3\xa9gu\xc3\xa9s en <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2" class="mw-redirect" title="Championnat de France de football de Ligue 2">Ligue 2</a>\n</td>\n<td><a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens Sporting Club</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse Football Club</a>\n</td></tr></tbody></table>\n</center>\n<ul><li>Meilleure attaque&#160;: <b><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></b> (75 buts inscrits)</li>\n<li>Meilleure d\xc3\xa9fense&#160;: <b><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a></b>  (21 buts encaiss\xc3\xa9s)</li>\n<li>Premier but de la saison&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Moussa_Demb%C3%A9l%C3%A9_(football)" title="Moussa Demb\xc3\xa9l\xc3\xa9 (football)">Moussa Demb\xc3\xa9l\xc3\xa9</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 5 minutes"><img alt="But inscrit apr\xc3\xa8s 5 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>5<sup>e</sup></b></small> pour l\'<a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> contre l\'<a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a> (<b>3</b>-0) le <time class="nowrap date-lien" datetime="2019-08-09" data-sort-value="2019-08-09"><a href="/wiki/9_ao%C3%BBt_en_sport" title="9 ao\xc3\xbbt en sport">9</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>Dernier but de la saison&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Lo%C3%AFc_R%C3%A9my" title="Lo\xc3\xafc R\xc3\xa9my">Lo\xc3\xafc R\xc3\xa9my</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 33 minutes"><img alt="But inscrit apr\xc3\xa8s 33 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>33<sup>e</sup></b></small> pour le <a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a> contre l\'<a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> (<b>1</b>-0) le <time class="nowrap date-lien" datetime="2020-03-08" data-sort-value="2020-03-08"><a href="/wiki/8_mars_en_sport" title="8 mars en sport">8 mars</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr> journ\xc3\xa9e).</li>\n<li>Premier penalty&#160;:\n<ul><li>Transform\xc3\xa9&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Cape_Verde.svg" class="mw-file-description" title="Drapeau : Cap-Vert"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Flag_of_Cape_Verde.svg/20px-Flag_of_Cape_Verde.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/38/Flag_of_Cape_Verde.svg/30px-Flag_of_Cape_Verde.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/38/Flag_of_Cape_Verde.svg/40px-Flag_of_Cape_Verde.svg.png 2x" data-file-width="1020" data-file-height="600" /></a></span></span> <b><a href="/wiki/J%C3%BAlio_Tavares" title="J\xc3\xbalio Tavares">J\xc3\xbalio Tavares</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 34 minutes"><img alt="But inscrit apr\xc3\xa8s 34 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>34<sup>e</sup></b>&#32;(<a href="/wiki/Loi_14_du_football" title="Loi 14 du football"><span title="sur p\xc3\xa9nalit\xc3\xa9 (coup de pied de r\xc3\xa9paration)">pen.</span></a>)</small> pour <a href="/wiki/Dijon_Football_C%C3%B4te-d%27Or" title="Dijon Football C\xc3\xb4te-d&#39;Or">Dijon FCO</a> contre l\'<a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> (<b>1</b>-2) le <time class="nowrap date-lien" datetime="2019-08-10" data-sort-value="2019-08-10"><a href="/wiki/10_ao%C3%BBt_en_sport" title="10 ao\xc3\xbbt en sport">10</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>Rat\xc3\xa9&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Algeria.svg" class="mw-file-description" title="Drapeau : Alg\xc3\xa9rie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/20px-Flag_of_Algeria.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/40px-Flag_of_Algeria.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Andy_Delort" title="Andy Delort">Andy Delort</a></b> <small><b><span typeof="mw:File"><span title="Manqu\xc3\xa9 (61)"><img alt="Manqu\xc3\xa9 (61)" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Soccerball_shade_cross.svg/10px-Soccerball_shade_cross.svg.png" decoding="async" width="10" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Soccerball_shade_cross.svg/15px-Soccerball_shade_cross.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Soccerball_shade_cross.svg/20px-Soccerball_shade_cross.svg.png 2x" data-file-width="313" data-file-height="313" /></span></span> <abbr class="abbr" title="Soixante et uni\xc3\xa8me">61<sup>e</sup></abbr> </b></small> pour <a href="/wiki/Montpellier_H%C3%A9rault_Sport_Club" title="Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a> contre le <a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a> (<b>0</b>-1) le <time class="nowrap date-lien" datetime="2019-08-10" data-sort-value="2019-08-10"><a href="/wiki/10_ao%C3%BBt_en_sport" title="10 ao\xc3\xbbt en sport">10</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li></ul></li>\n<li>Premier but sur coup franc direct&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Nicolas_de_Pr%C3%A9ville" title="Nicolas de Pr\xc3\xa9ville">Nicolas de Pr\xc3\xa9ville</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 4 minutes"><img alt="But inscrit apr\xc3\xa8s 4 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>4<sup>e</sup></b></small> pour les <a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a> contre le <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\'Angers</a> (<b>1</b>-3) le <time class="nowrap date-lien" datetime="2019-08-10" data-sort-value="2019-08-10"><a href="/wiki/10_ao%C3%BBt_en_sport" title="10 ao\xc3\xbbt en sport">10</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>Premier but contre son camp&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Turkey.svg" class="mw-file-description" title="Drapeau : Turquie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/20px-Flag_of_Turkey.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/30px-Flag_of_Turkey.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/40px-Flag_of_Turkey.svg.png 2x" data-file-width="1200" data-file-height="800" /></a></span></span> <b><a href="/wiki/Zeki_%C3%87elik" title="Zeki \xc3\x87elik">Zeki \xc3\x87elik</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 51 minutes"><img alt="But inscrit apr\xc3\xa8s 51 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/27/Soccerball-red.svg/20px-Soccerball-red.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="400" data-file-height="400" /></span></span> &#32;<b>51<sup>e</sup></b>&#32;(<a href="/wiki/But_contre_son_camp" title="But contre son camp"><span title="contre son camp">csc</span></a>)</small> de <a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a> en faveur du <a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a> (2-<b>1</b>) le <time class="nowrap date-lien" datetime="2019-08-11" data-sort-value="2019-08-11"><a href="/wiki/11_ao%C3%BBt_en_sport" title="11 ao\xc3\xbbt en sport">11</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>But le plus rapide d\'une rencontre&#160;:\n<ul><li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Nolan_Roux" title="Nolan Roux">Nolan Roux</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 1 minutes"><img alt="But inscrit apr\xc3\xa8s 1 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>1<sup>re</sup></b></small> pour le <a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes olympique</a> contre le  <a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">stade rennais</a> (2-<b>1</b>) le <time class="nowrap date-lien" datetime="2020-02-23" data-sort-value="2020-02-23"><a href="/wiki/23_f%C3%A9vrier_en_sport" title="23 f\xc3\xa9vrier en sport">23 f\xc3\xa9vrier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingt-sixi\xc3\xa8me">26<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li>\n<li>But le plus tardif d\'une rencontre&#160;:\n<ul><li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <b><a href="/wiki/Raphinha" title="Raphinha">Raphinha</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 90+8 minutes"><img alt="But inscrit apr\xc3\xa8s 90+8 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>90+8<sup>e</sup></b></small> pour le <a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a> contre le <a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a> (<b>3</b>-2) le <time class="nowrap date-lien" datetime="2020-01-31" data-sort-value="2020-01-31"><a href="/wiki/31_janvier_en_sport" title="31 janvier en sport">31</a> <a href="/wiki/Janvier_2020_en_sport" title="Janvier 2020 en sport">janvier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingt-deuxi\xc3\xa8me">22<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li>\n<li>Premier doubl\xc3\xa9&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Nigeria.svg" class="mw-file-description" title="Drapeau : Nigeria"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/20px-Flag_of_Nigeria.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/30px-Flag_of_Nigeria.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/40px-Flag_of_Nigeria.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <b><a href="/wiki/Victor_Osimhen" title="Victor Osimhen">Victor Osimhen</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 19 minutes"><img alt="But inscrit apr\xc3\xa8s 19 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>19<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 80 minutes"><img alt="But inscrit apr\xc3\xa8s 80 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>80<sup>e</sup></b></small> pour <a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a> contre le <a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a> (<b>2</b>-1) le <time class="nowrap date-lien" datetime="2019-08-11" data-sort-value="2019-08-11"><a href="/wiki/11_ao%C3%BBt_en_sport" title="11 ao\xc3\xbbt en sport">11</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>Doubl\xc3\xa9 le plus rapide&#160;: <b>5 minutes</b>\n<ul><li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Chad.svg" class="mw-file-description" title="Drapeau : Tchad"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/20px-Flag_of_Chad.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/30px-Flag_of_Chad.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/40px-Flag_of_Chad.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Casimir_Ninga" title="Casimir Ninga">Casimir Ninga</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 84 minutes"><img alt="But inscrit apr\xc3\xa8s 84 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>84<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 89 minutes"><img alt="But inscrit apr\xc3\xa8s 89 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>89<sup>e</sup></b></small> pour le <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\'Angers</a> contre l\'<a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> (<b>4</b>-1) le <time class="nowrap date-lien" datetime="2019-09-22" data-sort-value="2019-09-22"><a href="/wiki/22_septembre_en_sport" title="22 septembre en sport">22</a> <a href="/wiki/Septembre_2019_en_sport" class="mw-redirect" title="Septembre 2019 en sport">septembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr> journ\xc3\xa9e)</li></ul></li>\n<li>Premier tripl\xc3\xa9&#160;:  <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Chad.svg" class="mw-file-description" title="Drapeau : Tchad"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/20px-Flag_of_Chad.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/30px-Flag_of_Chad.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/40px-Flag_of_Chad.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Casimir_Ninga" title="Casimir Ninga">Casimir Ninga</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 78 minutes"><img alt="But inscrit apr\xc3\xa8s 78 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>78<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 84 minutes"><img alt="But inscrit apr\xc3\xa8s 84 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>84<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 89 minutes"><img alt="But inscrit apr\xc3\xa8s 89 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>89<sup>e</sup></b></small> pour le <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\xe2\x80\x99Angers</a> contre l\'<a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> (<b>4</b>-1) le <time class="nowrap date-lien" datetime="2019-09-22" data-sort-value="2019-09-22"><a href="/wiki/22_septembre_en_sport" title="22 septembre en sport">22</a> <a href="/wiki/Septembre_2019_en_sport" class="mw-redirect" title="Septembre 2019 en sport">septembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr> journ\xc3\xa9e)</li>\n<li>Tripl\xc3\xa9 le plus rapide&#160;: <b>11 minutes</b>\n<ul><li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Chad.svg" class="mw-file-description" title="Drapeau : Tchad"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/20px-Flag_of_Chad.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/30px-Flag_of_Chad.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/40px-Flag_of_Chad.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Casimir_Ninga" title="Casimir Ninga">Casimir Ninga</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 78 minutes"><img alt="But inscrit apr\xc3\xa8s 78 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>78<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 84 minutes"><img alt="But inscrit apr\xc3\xa8s 84 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>84<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 89 minutes"><img alt="But inscrit apr\xc3\xa8s 89 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>89<sup>e</sup></b></small> pour le <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\'Angers</a> contre l\'<a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> (<b>4</b>-1) le <time class="nowrap date-lien" datetime="2019-09-22" data-sort-value="2019-09-22"><a href="/wiki/22_septembre_en_sport" title="22 septembre en sport">22</a> <a href="/wiki/Septembre_2019_en_sport" class="mw-redirect" title="Septembre 2019 en sport">septembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr> journ\xc3\xa9e)</li></ul></li>\n<li>Plus grand nombre de buts dans une rencontre pour un joueur&#160;: <b>3 buts</b>\n<ul><li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Chad.svg" class="mw-file-description" title="Drapeau : Tchad"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/20px-Flag_of_Chad.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/30px-Flag_of_Chad.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Flag_of_Chad.svg/40px-Flag_of_Chad.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Casimir_Ninga" title="Casimir Ninga">Casimir Ninga</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 78 minutes"><img alt="But inscrit apr\xc3\xa8s 78 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>78<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 84 minutes"><img alt="But inscrit apr\xc3\xa8s 84 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>84<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 89 minutes"><img alt="But inscrit apr\xc3\xa8s 89 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>89<sup>e</sup></b></small> pour le <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\'Angers</a> contre l\'<a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> (<b>4</b>-1) le <time class="nowrap date-lien" datetime="2019-09-22" data-sort-value="2019-09-22"><a href="/wiki/22_septembre_en_sport" title="22 septembre en sport">22</a> <a href="/wiki/Septembre_2019_en_sport" class="mw-redirect" title="Septembre 2019 en sport">septembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr> journ\xc3\xa9e)</li>\n<li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Italy.svg" class="mw-file-description" title="Drapeau : Italie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/20px-Flag_of_Italy.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/30px-Flag_of_Italy.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/40px-Flag_of_Italy.svg.png 2x" data-file-width="1500" data-file-height="1000" /></a></span></span> <b><a href="/wiki/Cristian_Battocchio" title="Cristian Battocchio">Cristian Battocchio</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 45+1 minutes"><img alt="But inscrit apr\xc3\xa8s 45+1 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>45+1<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 53 minutes"><img alt="But inscrit apr\xc3\xa8s 53 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>53<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 75 minutes"><img alt="But inscrit apr\xc3\xa8s 75 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>75<sup>e</sup></b></small> pour le <a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois 29</a> contre le <a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg</a> (<b>5</b>-0) le <time class="nowrap date-lien" datetime="2019-12-03" data-sort-value="2019-12-03"><a href="/wiki/3_d%C3%A9cembre_en_sport" title="3 d\xc3\xa9cembre en sport">3</a> <a href="/wiki/D%C3%A9cembre_2019_en_sport" class="mw-redirect" title="D\xc3\xa9cembre 2019 en sport">d\xc3\xa9cembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr> journ\xc3\xa9e)</li>\n<li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Nigeria.svg" class="mw-file-description" title="Drapeau : Nigeria"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/20px-Flag_of_Nigeria.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/30px-Flag_of_Nigeria.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/40px-Flag_of_Nigeria.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <b><a href="/wiki/Josh_Maja" title="Josh Maja">Josh Maja</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 25 minutes"><img alt="But inscrit apr\xc3\xa8s 25 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>25<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 38 minutes"><img alt="But inscrit apr\xc3\xa8s 38 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>38<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 53 minutes"><img alt="But inscrit apr\xc3\xa8s 53 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>53<sup>e</sup></b></small> pour les <a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a> contre le <a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a> (<b>6</b>-0) le <time class="nowrap date-lien" datetime="2019-12-03" data-sort-value="2019-12-03"><a href="/wiki/3_d%C3%A9cembre_en_sport" title="3 d\xc3\xa9cembre en sport">3</a> <a href="/wiki/D%C3%A9cembre_2019_en_sport" class="mw-redirect" title="D\xc3\xa9cembre 2019 en sport">d\xc3\xa9cembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr> journ\xc3\xa9e)</li>\n<li><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Argentina.svg" class="mw-file-description" title="Drapeau : Argentine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/20px-Flag_of_Argentina.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/30px-Flag_of_Argentina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png 2x" data-file-width="800" data-file-height="500" /></a></span></span> <b><a href="/wiki/Dar%C3%ADo_Benedetto" title="Dar\xc3\xado Benedetto">Dar\xc3\xado Benedetto</a></b> <small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 10 minutes"><img alt="But inscrit apr\xc3\xa8s 10 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>10<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 36 minutes"><img alt="But inscrit apr\xc3\xa8s 36 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>36<sup>e</sup></b></small>&#32;<small style="white-space:nowrap;line-height:1"><span typeof="mw:File"><span title="But inscrit apr\xc3\xa8s 69 minutes"><img alt="But inscrit apr\xc3\xa8s 69 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/Soccerball_shade.svg/20px-Soccerball_shade.svg.png" decoding="async" width="10" height="10" class="mw-file-element" data-file-width="333" data-file-height="333" /></span></span> &#32;<b>69<sup>e</sup></b></small> pour l\'<a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> contre le <a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a> (2-<b>3</b>) le <time class="nowrap date-lien" datetime="2020-02-28" data-sort-value="2020-02-28"><a href="/wiki/28_f%C3%A9vrier_en_sport" title="28 f\xc3\xa9vrier en sport">28 f\xc3\xa9vrier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingt-septi\xc3\xa8me">27<sup>e</sup></abbr> journ\xc3\xa9e)</li></ul></li>\n<li>Premier carton jaune&#160;: <span style="margin:0px 3px 0px 2px"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Switzerland.svg" class="mw-file-description" title="Drapeau : Suisse"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Flag_of_Switzerland.svg/15px-Flag_of_Switzerland.svg.png" decoding="async" width="15" height="15" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Flag_of_Switzerland.svg/23px-Flag_of_Switzerland.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Flag_of_Switzerland.svg/30px-Flag_of_Switzerland.svg.png 2x" data-file-width="512" data-file-height="512" /></a></span></span></span> <b><a href="/wiki/Diego_Benaglio" title="Diego Benaglio">Diego Benaglio</a></b> et <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <b><a href="/wiki/Houssem_Aouar" title="Houssem Aouar">Houssem Aouar</a></b> <span typeof="mw:File"><span title="Averti apr\xc3\xa8s 33 minutes"><img alt="Averti apr\xc3\xa8s 33 minutes" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/10px-Yellow_card.svg.png" decoding="async" width="10" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/15px-Yellow_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Yellow_card.svg/20px-Yellow_card.svg.png 2x" data-file-width="200" data-file-height="260" /></span></span><span style="font-size: 10px; vertical-align: middle;"> <b>33<sup>e</sup></b></span> lors de <a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a> - <a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> (0-3) le <time class="nowrap date-lien" datetime="2019-08-09" data-sort-value="2019-08-09"><a href="/wiki/9_ao%C3%BBt_en_sport" title="9 ao\xc3\xbbt en sport">9</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>Premier carton rouge&#160;: <span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Spain.svg" class="mw-file-description" title="Drapeau : Espagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/20px-Flag_of_Spain.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/30px-Flag_of_Spain.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/40px-Flag_of_Spain.svg.png 2x" data-file-width="750" data-file-height="500" /></a></span></span> <b><a href="/wiki/Cesc_F%C3%A0bregas" title="Cesc F\xc3\xa0bregas">Cesc F\xc3\xa0bregas</a></b> <span style="white-space:nowrap"><span typeof="mw:File"><span title="Expuls\xc3\xa9 apr\xc3\xa8s 30 minutes"><img alt="Carton rouge" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Red_card.svg/10px-Red_card.svg.png" decoding="async" width="10" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Red_card.svg/15px-Red_card.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Red_card.svg/20px-Red_card.svg.png 2x" data-file-width="200" data-file-height="260" /></span></span>&#32;<span style="font-size: 10px; vertical-align: middle;"> <b>30<sup>e</sup></b></span></span> lors de <a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a> - <a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> (0-3) le <time class="nowrap date-lien" datetime="2019-08-09" data-sort-value="2019-08-09"><a href="/wiki/9_ao%C3%BBt_en_sport" title="9 ao\xc3\xbbt en sport">9</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr> journ\xc3\xa9e).</li>\n<li>Plus large victoire \xc3\xa0 domicile&#160;: <b>6 buts d\'\xc3\xa9cart</b>\n<ul><li><b>6-0</b> lors de <a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a> - <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\'Angers</a> le <time class="nowrap date-lien" datetime="2019-08-16" data-sort-value="2019-08-16"><a href="/wiki/16_ao%C3%BBt_en_sport" title="16 ao\xc3\xbbt en sport">16</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Deuxi\xc3\xa8me">2<sup>e</sup></abbr> journ\xc3\xa9e).</li>\n<li><b>6-0</b> lors de <a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a> - <a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a> le <time class="nowrap date-lien" datetime="2019-12-03" data-sort-value="2019-12-03"><a href="/wiki/3_d%C3%A9cembre_en_sport" title="3 d\xc3\xa9cembre en sport">3</a> <a href="/wiki/D%C3%A9cembre_2019_en_sport" class="mw-redirect" title="D\xc3\xa9cembre 2019 en sport">d\xc3\xa9cembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li>\n<li>Plus large victoire \xc3\xa0 l\'ext\xc3\xa9rieur&#160;: <b>4 buts d\'\xc3\xa9cart</b>\n<ul><li><b>0-4</b> lors de <a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> - <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> le <time class="nowrap" datetime="2019-12-15" data-sort-value="2019-12-15">15 d\xc3\xa9cembre 2019</time> (<abbr class="abbr" title="Dix-huiti\xc3\xa8me">18<sup>e</sup></abbr> journ\xc3\xa9e)</li></ul></li>\n<li>Plus grand nombre de buts dans une rencontre&#160;: <b>8 buts</b>\n<ul><li><b>4-4</b> lors de <a href="/wiki/Amiens_Sporting_Club" title="Amiens Sporting Club">Amiens SC</a> - <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> le <time class="nowrap date-lien" datetime="2020-02-15" data-sort-value="2020-02-15"><a href="/wiki/15_f%C3%A9vrier_en_sport" title="15 f\xc3\xa9vrier en sport">15 f\xc3\xa9vrier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingt-cinqui\xc3\xa8me">25<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li>\n<li>Plus grand nombre de buts dans une mi-temps&#160;:\n<ul><li>en <abbr class="abbr" title="Premi\xc3\xa8re">1<sup>re</sup></abbr>&#160;mi-temps <b>5 buts</b>&#160;:\n<ul><li><b>3-2</b> lors de <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> 3 - 3 <a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a> le <time class="nowrap date-lien" datetime="2020-01-12" data-sort-value="2020-01-12"><a href="/wiki/12_janvier_en_sport" title="12 janvier en sport">12</a> <a href="/wiki/Janvier_2020_en_sport" title="Janvier 2020 en sport">janvier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li>\n<li>en <abbr class="abbr" title="Deuxi\xc3\xa8me">2<sup>e</sup></abbr>&#160;mi-temps <b>5 buts</b>&#160;:\n<ul><li><b>3-2</b> lors de <a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a> 3 - 2 <a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a> le <time class="nowrap date-lien" datetime="2020-01-31" data-sort-value="2020-01-31"><a href="/wiki/31_janvier_en_sport" title="31 janvier en sport">31</a> <a href="/wiki/Janvier_2020_en_sport" title="Janvier 2020 en sport">janvier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingt-deuxi\xc3\xa8me">22<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li></ul></li>\n<li>Plus grand nombre de buts dans une mi-temps pour une \xc3\xa9quipe&#160;:\n<ul><li><b>4 buts</b>&#160;:\n<ul><li><b>4-0</b> lors de <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> 4 - 0 <a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a> le <time class="nowrap date-lien" datetime="2019-08-25" data-sort-value="2019-08-25"><a href="/wiki/25_ao%C3%BBt_en_sport" title="25 ao\xc3\xbbt en sport">25</a> <a href="/wiki/Ao%C3%BBt_2019_en_sport" class="mw-redirect" title="Ao\xc3\xbbt 2019 en sport">ao\xc3\xbbt</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Troisi\xc3\xa8me">3<sup>e</sup></abbr> journ\xc3\xa9e).</li>\n<li><b>4-0</b> lors de <a href="/wiki/Angers_sporting_club_de_l%27Ouest" class="mw-redirect" title="Angers sporting club de l&#39;Ouest">SCO d\xe2\x80\x99Angers</a> 4 - 1 <a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a> le <time class="nowrap date-lien" datetime="2019-09-22" data-sort-value="2019-09-22"><a href="/wiki/22_septembre_en_sport" title="22 septembre en sport">22</a> <a href="/wiki/Septembre_2019_en_sport" class="mw-redirect" title="Septembre 2019 en sport">septembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Sixi\xc3\xa8me">6<sup>e</sup></abbr> journ\xc3\xa9e).</li>\n<li><b>4-0</b> lors de <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> 4 - 0 <a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> le <time class="nowrap date-lien" datetime="2019-10-27" data-sort-value="2019-10-27"><a href="/wiki/27_octobre_en_sport" title="27 octobre en sport">27</a> <a href="/wiki/Octobre_2019_en_sport" class="mw-redirect" title="Octobre 2019 en sport">octobre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Onzi\xc3\xa8me">11<sup>e</sup></abbr> journ\xc3\xa9e).</li>\n<li><b>4-0</b> lors de <a href="/wiki/Football_Club_des_Girondins_de_Bordeaux" title="Football Club des Girondins de Bordeaux">Girondins de Bordeaux</a> 6 - 0 <a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a> le <time class="nowrap date-lien" datetime="2019-12-03" data-sort-value="2019-12-03"><a href="/wiki/3_d%C3%A9cembre_en_sport" title="3 d\xc3\xa9cembre en sport">3</a> <a href="/wiki/D%C3%A9cembre_2019_en_sport" class="mw-redirect" title="D\xc3\xa9cembre 2019 en sport">d\xc3\xa9cembre</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time> (<abbr class="abbr" title="Seizi\xc3\xa8me">16<sup>e</sup></abbr> journ\xc3\xa9e).</li>\n<li><b>0-4</b> lors de <a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a> 2 - 5 <a href="/wiki/Stade_brestois_29" title="Stade brestois 29">Stade brestois</a> le <time class="nowrap date-lien" datetime="2020-01-11" data-sort-value="2020-01-11"><a href="/wiki/11_janvier_en_sport" title="11 janvier en sport">11</a> <a href="/wiki/Janvier_2020_en_sport" title="Janvier 2020 en sport">janvier</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> (<abbr class="abbr" title="Vingti\xc3\xa8me">20<sup>e</sup></abbr> journ\xc3\xa9e).</li></ul></li></ul></li>\n<li><i><a href="/wiki/Champion_d%27automne" title="Champion d&#39;automne">Champion d\'automne</a></i>&#160;: <b><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></b></li>\n<li><i>Champion</i>&#160;: <b><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a></b></li></ul>\n<div class="mw-heading mw-heading2"><h2 id="Troph\xc3\xa9e_UNFP"><span id="Troph.C3.A9e_UNFP"></span>Troph\xc3\xa9e UNFP</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=22" title="Modifier la section\xe2\x80\xaf: Troph\xc3\xa9e UNFP" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=22" title="Modifier le code source de la section : Troph\xc3\xa9e UNFP"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Chaque d\xc3\xa9but de mois les internautes votent pour \xc3\xa9lire le <a href="/wiki/Troph%C3%A9e_du_joueur_du_mois_UNFP#L1_2019-2020" class="mw-redirect" title="Troph\xc3\xa9e du joueur du mois UNFP">troph\xc3\xa9e UNFP du joueur du mois de Ligue 1</a>.\n</p>\n<table class="wikitable" style="font-size:90%;">\n<caption class="hidden">\n</caption>\n<tbody><tr>\n<th scope="col" rowspan="2">Mois\n</th>\n<th scope="col" colspan="3">Premier\n</th>\n<th scope="col" colspan="3">Deuxi\xc3\xa8me\n</th>\n<th scope="col" colspan="3">Troisi\xc3\xa8me\n</th>\n<th scope="col" rowspan="2">R\xc3\xa9f.\n</th></tr>\n<tr>\n<th scope="col">Joueur\n</th>\n<th scope="col">Club\n</th>\n<th scope="col">%\n</th>\n<th scope="col">Joueur\n</th>\n<th scope="col">Club\n</th>\n<th scope="col">%\n</th>\n<th scope="col">Joueur\n</th>\n<th scope="col">Club\n</th>\n<th scope="col">%\n</th></tr>\n<tr>\n<th scope="col">Ao\xc3\xbbt\n</th>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Eduardo_Camavinga" title="Eduardo Camavinga">Eduardo Camavinga</a>\n</td>\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais</a>\n</td>\n<td>50\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Algeria.svg" class="mw-file-description" title="Drapeau : Alg\xc3\xa9rie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/20px-Flag_of_Algeria.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/40px-Flag_of_Algeria.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Zinedine_Ferhat" title="Zinedine Ferhat">Zinedine Ferhat</a>\n</td>\n<td><a href="/wiki/N%C3%AEmes_Olympique" title="N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a>\n</td>\n<td>32\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Baptiste_Reynet" title="Baptiste Reynet">Baptiste Reynet</a>\n</td>\n<td><a href="/wiki/Toulouse_Football_Club" title="Toulouse Football Club">Toulouse FC</a>\n</td>\n<td>18\n</td>\n<th scope="col"><sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span class="cite_crochet">[</span>9<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">Septembre\n</th>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Nigeria.svg" class="mw-file-description" title="Drapeau : Nigeria"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/20px-Flag_of_Nigeria.svg.png" decoding="async" width="20" height="10" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/30px-Flag_of_Nigeria.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/40px-Flag_of_Nigeria.svg.png 2x" data-file-width="1200" data-file-height="600" /></a></span></span> <a href="/wiki/Victor_Osimhen" title="Victor Osimhen">Victor Osimhen</a>\n</td>\n<td><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a>\n</td>\n<td>45\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Algeria.svg" class="mw-file-description" title="Drapeau : Alg\xc3\xa9rie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/20px-Flag_of_Algeria.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/40px-Flag_of_Algeria.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Islam_Slimani" title="Islam Slimani">Islam Slimani</a>\n</td>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a>\n</td>\n<td>37\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Nicolas_Pallois" title="Nicolas Pallois">Nicolas Pallois</a>\n</td>\n<td><a href="/wiki/Football_Club_de_Nantes" title="Football Club de Nantes">FC Nantes</a>\n</td>\n<td>18\n</td>\n<th scope="col"><sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span class="cite_crochet">[</span>10<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">Octobre\n</th>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <a href="/wiki/Thiago_Silva" title="Thiago Silva">Thiago Silva</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>\n</td>\n<td>37\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Wissam_Ben_Yedder" title="Wissam Ben Yedder">Wissam Ben Yedder</a>\n</td>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a>\n</td>\n<td>33\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Argentina.svg" class="mw-file-description" title="Drapeau : Argentine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/20px-Flag_of_Argentina.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/30px-Flag_of_Argentina.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/40px-Flag_of_Argentina.svg.png 2x" data-file-width="800" data-file-height="500" /></a></span></span> <a href="/wiki/%C3%81ngel_Di_Mar%C3%ADa" title="\xc3\x81ngel Di Mar\xc3\xada">\xc3\x81ngel Di Mar\xc3\xada</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>\n</td>\n<td>30\n</td>\n<th scope="col"><sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span class="cite_crochet">[</span>11<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">Novembre\n</th>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Jeff_Reine-Ad%C3%A9la%C3%AFde" title="Jeff Reine-Ad\xc3\xa9la\xc3\xafde">Jeff Reine-Ad\xc3\xa9la\xc3\xafde</a>\n</td>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td>39\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Ludovic_Ajorque" title="Ludovic Ajorque">Ludovic Ajorque</a>\n</td>\n<td><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg</a>\n</td>\n<td>33\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Gabon.svg" class="mw-file-description" title="Drapeau : Gabon"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/04/Flag_of_Gabon.svg/20px-Flag_of_Gabon.svg.png" decoding="async" width="20" height="15" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/04/Flag_of_Gabon.svg/30px-Flag_of_Gabon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/04/Flag_of_Gabon.svg/40px-Flag_of_Gabon.svg.png 2x" data-file-width="1000" data-file-height="750" /></a></span></span> <a href="/wiki/Denis_Bouanga" title="Denis Bouanga">Denis Bouanga</a>\n</td>\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td>28\n</td>\n<th scope="col"><sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span class="cite_crochet">[</span>12<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">D\xc3\xa9cembre\n</th>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Wissam_Ben_Yedder" title="Wissam Ben Yedder">Wissam Ben Yedder</a>\n</td>\n<td><a href="/wiki/Association_sportive_de_Monaco_football_club" class="mw-redirect" title="Association sportive de Monaco football club">AS Monaco</a>\n</td>\n<td>49\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Dimitri_Payet" title="Dimitri Payet">Dimitri Payet</a>\n</td>\n<td><a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a>\n</td>\n<td>39\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Ludovic_Ajorque" title="Ludovic Ajorque">Ludovic Ajorque</a>\n</td>\n<td><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg</a>\n</td>\n<td>12\n</td>\n<th scope="col"><sup id="cite_ref-19" class="reference"><a href="#cite_note-19"><span class="cite_crochet">[</span>13<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">Janvier\n</th>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Brazil.svg" class="mw-file-description" title="Drapeau : Br\xc3\xa9sil"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/20px-Flag_of_Brazil.svg.png" decoding="async" width="20" height="14" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/40px-Flag_of_Brazil.svg.png 1.5x" data-file-width="1000" data-file-height="700" /></a></span></span> <a href="/wiki/Neymar" title="Neymar">Neymar</a>\n</td>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>\n</td>\n<td>62\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Morocco.svg" class="mw-file-description" title="Drapeau : Maroc"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Flag_of_Morocco.svg/20px-Flag_of_Morocco.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Flag_of_Morocco.svg/30px-Flag_of_Morocco.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Flag_of_Morocco.svg/40px-Flag_of_Morocco.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Yunis_Abdelhamid" title="Yunis Abdelhamid">Yunis Abdelhamid</a>\n</td>\n<td><a href="/wiki/Stade_de_Reims" title="Stade de Reims">Stade de Reims</a>\n</td>\n<td>20\n</td>\n<td><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_France.svg" class="mw-file-description" title="Drapeau : France"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/20px-Flag_of_France.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Moussa_Demb%C3%A9l%C3%A9_(football)" title="Moussa Demb\xc3\xa9l\xc3\xa9 (football)">Moussa Demb\xc3\xa9l\xc3\xa9</a>\n</td>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td>18\n</td>\n<th scope="col"><sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span class="cite_crochet">[</span>14<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">F\xc3\xa9vrier\n</th>\n<td bgcolor="#DFDFDF" colspan="9" rowspan="3" style="text-align:center"><i>Annul\xc3\xa9s</i>\n</td>\n<th scope="col" rowspan="3"><sup id="cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-0" class="reference"><a href="#cite_note-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es-21"><span class="cite_crochet">[</span>15<span class="cite_crochet">]</span></a></sup>\n</th></tr>\n<tr>\n<th scope="col">Mars\n</th></tr>\n<tr>\n<th scope="col">Avril\n</th></tr></tbody></table>\n<p>Le 19 mai 2020, l\'<a href="/wiki/Union_nationale_des_footballeurs_professionnels" title="Union nationale des footballeurs professionnels">Union nationale des footballeurs professionnels</a> (UNFP) annonce l\'annulation de la c\xc3\xa9r\xc3\xa9monie des \xc2\xab&#160;troph\xc3\xa9es UNFP du football 2020&#160;\xc2\xbb<sup id="cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-1" class="reference"><a href="#cite_note-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es-21"><span class="cite_crochet">[</span>15<span class="cite_crochet">]</span></a></sup>.\n</p>\n<table class="wikitable">\n<caption class="hidden">\n</caption>\n<tbody><tr>\n<th scope="col">Meilleur joueur\n</th>\n<th scope="col">Meilleur gardien\n</th>\n<th scope="col">Meilleur espoir\n</th>\n<th scope="col">Meilleur entra\xc3\xaeneur\n</th>\n<th scope="col">Plus beau but\n</th>\n<th scope="col">R\xc3\xa9f.\n</th></tr>\n<tr>\n<td bgcolor="#DFDFDF" colspan="5" style="text-align:center"><i>Annul\xc3\xa9s</i>\n</td>\n<td style="text-align:center"><sup id="cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-2" class="reference"><a href="#cite_note-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es-21"><span class="cite_crochet">[</span>15<span class="cite_crochet">]</span></a></sup>\n</td></tr></tbody></table>\n<table class="wikitable">\n<caption>\xc3\x89quipe type\n</caption>\n<tbody><tr>\n<th scope="col">Gardien de but\n</th>\n<th scope="col">D\xc3\xa9fenseurs\n</th>\n<th scope="col">Milieux de terrain\n</th>\n<th scope="col">Attaquants\n</th>\n<th scope="col">R\xc3\xa9f.\n</th></tr>\n<tr>\n<td bgcolor="#DFDFDF" colspan="4" style="text-align:center"><i>Annul\xc3\xa9s</i>\n</td>\n<td style="text-align:center"><sup id="cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-3" class="reference"><a href="#cite_note-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es-21"><span class="cite_crochet">[</span>15<span class="cite_crochet">]</span></a></sup>\n</td></tr></tbody></table>\n<div class="mw-heading mw-heading2"><h2 id="Parcours_en_Coupes_d\'Europe"><span id="Parcours_en_Coupes_d.27Europe"></span>Parcours en Coupes d\'Europe</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=23" title="Modifier la section\xe2\x80\xaf: Parcours en Coupes d&#39;Europe" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=23" title="Modifier le code source de la section : Parcours en Coupes d&#39;Europe"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Le parcours des clubs fran\xc3\xa7ais en coupes d\'Europe est important puisqu\'il d\xc3\xa9termine le <a href="/wiki/Coefficient_UEFA_(masculin)" title="Coefficient UEFA (masculin)">coefficient UEFA</a>, et donc le nombre de clubs fran\xc3\xa7ais pr\xc3\xa9sents en coupes d\'Europe les ann\xc3\xa9es suivantes. Cette saison europ\xc3\xa9enne est notamment marqu\xc3\xa9e par la pr\xc3\xa9sence de deux clubs fran\xc3\xa7ais en demi-finale de Ligue des champions, une premi\xc3\xa8re dans l\'histoire du football fran\xc3\xa7ais.\n</p>\n<table class="wikitable">\n<caption class="hidden">\n</caption>\n<tbody><tr>\n<th scope="col">Club\n</th>\n<th scope="col">Comp\xc3\xa9tition\n</th>\n<th scope="col">R\xc3\xa9sultat\n</th>\n<th colspan="3" scope="col">Ultime(s) adversaire(s)\n</th></tr>\n<tr>\n<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>\n</td>\n<td rowspan="3"><a href="/wiki/Ligue_des_champions_de_l%27UEFA_2019-2020" title="Ligue des champions de l&#39;UEFA 2019-2020">Ligue des champions</a>\n</td>\n<td><span data-sort-value="02"><span typeof="mw:File"><span title="M\xc3\xa9daille d&#39;argent, Europe"><img alt="M\xc3\xa9daille d&#39;argent, Europe" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/98/Silver_medal_europe.svg/16px-Silver_medal_europe.svg.png" decoding="async" width="16" height="16" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/98/Silver_medal_europe.svg/24px-Silver_medal_europe.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/98/Silver_medal_europe.svg/32px-Silver_medal_europe.svg.png 2x" data-file-width="300" data-file-height="300" /></span></span></span> Finaliste\n</td>\n<td colspan="3" align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Germany.svg" class="mw-file-description" title="Drapeau : Allemagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/20px-Flag_of_Germany.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/30px-Flag_of_Germany.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/40px-Flag_of_Germany.svg.png 2x" data-file-width="1000" data-file-height="600" /></a></span></span> <a href="/wiki/Bayern_Munich" title="Bayern Munich">Bayern Munich</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>\n</td>\n<td>Demi-finale\n</td>\n<td colspan="3" align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Germany.svg" class="mw-file-description" title="Drapeau : Allemagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/20px-Flag_of_Germany.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/30px-Flag_of_Germany.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/40px-Flag_of_Germany.svg.png 2x" data-file-width="1000" data-file-height="600" /></a></span></span> <a href="/wiki/Bayern_Munich" title="Bayern Munich">Bayern Munich</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/LOSC_Lille" title="LOSC Lille">LOSC Lille</a>\n</td>\n<td>Phase de groupes\n</td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_the_Netherlands.svg" class="mw-file-description" title="Drapeau : Pays-Bas"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Flag_of_the_Netherlands.svg/20px-Flag_of_the_Netherlands.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Flag_of_the_Netherlands.svg/30px-Flag_of_the_Netherlands.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/20/Flag_of_the_Netherlands.svg/40px-Flag_of_the_Netherlands.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/Ajax_Amsterdam" title="Ajax Amsterdam">Ajax Amsterdam</a></td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Spain.svg" class="mw-file-description" title="Drapeau : Espagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/20px-Flag_of_Spain.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/30px-Flag_of_Spain.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Spain.svg/40px-Flag_of_Spain.svg.png 2x" data-file-width="750" data-file-height="500" /></a></span></span> <a href="/wiki/Valence_Club_de_F%C3%BAtbol" class="mw-redirect" title="Valence Club de F\xc3\xbatbol">Valence CF</a></td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_England.svg" class="mw-file-description" title="Drapeau : Angleterre"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Flag_of_England.svg/20px-Flag_of_England.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/be/Flag_of_England.svg/30px-Flag_of_England.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/be/Flag_of_England.svg/40px-Flag_of_England.svg.png 2x" data-file-width="800" data-file-height="480" /></a></span></span> <a href="/wiki/Chelsea_Football_Club" title="Chelsea Football Club">Chelsea FC</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Stade_rennais_football_club" class="mw-redirect" title="Stade rennais football club">Stade rennais FC</a>\n</td>\n<td rowspan="3"><a href="/wiki/Ligue_Europa_2019-2020" title="Ligue Europa 2019-2020">Ligue Europa</a>\n</td>\n<td rowspan="2">Phase de groupes</td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Scotland.svg" class="mw-file-description" title="Drapeau : \xc3\x89cosse"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/20px-Flag_of_Scotland.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/30px-Flag_of_Scotland.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/40px-Flag_of_Scotland.svg.png 2x" data-file-width="1000" data-file-height="600" /></a></span></span> <a href="/wiki/Celtic_Football_Club" title="Celtic Football Club">Celtic Glasgow</a></td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Romania.svg" class="mw-file-description" title="Drapeau : Roumanie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Flag_of_Romania.svg/20px-Flag_of_Romania.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/73/Flag_of_Romania.svg/30px-Flag_of_Romania.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/73/Flag_of_Romania.svg/40px-Flag_of_Romania.svg.png 2x" data-file-width="600" data-file-height="400" /></a></span></span> <a href="/wiki/Fotbal_Club_CFR_1907_Cluj" class="mw-redirect" title="Fotbal Club CFR 1907 Cluj">CFR Cluj</a></td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Italy.svg" class="mw-file-description" title="Drapeau : Italie"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/20px-Flag_of_Italy.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/30px-Flag_of_Italy.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/40px-Flag_of_Italy.svg.png 2x" data-file-width="1500" data-file-height="1000" /></a></span></span> <a href="/wiki/Societ%C3%A0_Sportiva_Lazio" title="Societ\xc3\xa0 Sportiva Lazio">Lazio Rome</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Association_sportive_de_Saint-%C3%89tienne" title="Association sportive de Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a>\n</td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Belgium_(civil).svg" class="mw-file-description" title="Drapeau : Belgique"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/92/Flag_of_Belgium_%28civil%29.svg/20px-Flag_of_Belgium_%28civil%29.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/92/Flag_of_Belgium_%28civil%29.svg/40px-Flag_of_Belgium_%28civil%29.svg.png 1.5x" data-file-width="900" data-file-height="600" /></a></span></span> <a href="/wiki/KAA_La_Gantoise" title="KAA La Gantoise">La Gantoise</a></td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Germany.svg" class="mw-file-description" title="Drapeau : Allemagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/20px-Flag_of_Germany.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/30px-Flag_of_Germany.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/40px-Flag_of_Germany.svg.png 2x" data-file-width="1000" data-file-height="600" /></a></span></span> <a href="/wiki/VfL_Wolfsburg" title="VfL Wolfsburg">VfL Wolfsburg</a></td>\n<td align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Ukraine.svg" class="mw-file-description" title="Drapeau : Ukraine"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/Flag_of_Ukraine.svg/20px-Flag_of_Ukraine.svg.png" decoding="async" width="20" height="13" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/Flag_of_Ukraine.svg/30px-Flag_of_Ukraine.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/49/Flag_of_Ukraine.svg/40px-Flag_of_Ukraine.svg.png 2x" data-file-width="1200" data-file-height="800" /></a></span></span> <a href="/wiki/FK_Oleksandria" title="FK Oleksandria">FK Oleksandria</a>\n</td></tr>\n<tr>\n<td><a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a>\n</td>\n<td>Tour de barrage\n</td>\n<td colspan="3" align="center"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Fichier:Flag_of_Germany.svg" class="mw-file-description" title="Drapeau : Allemagne"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/20px-Flag_of_Germany.svg.png" decoding="async" width="20" height="12" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/30px-Flag_of_Germany.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/40px-Flag_of_Germany.svg.png 2x" data-file-width="1000" data-file-height="600" /></a></span></span> <a href="/wiki/Eintracht_Francfort" title="Eintracht Francfort">Eintracht Francfort</a>\n</td></tr></tbody></table>\n<div class="mw-heading mw-heading2"><h2 id="Perturbations_lors_du_championnat">Perturbations lors du championnat</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=24" title="Modifier la section\xe2\x80\xaf: Perturbations lors du championnat" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=24" title="Modifier le code source de la section : Perturbations lors du championnat"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="mw-heading mw-heading3"><h3 id="Controverse_au_sujet_de_l\'homophobie"><span id="Controverse_au_sujet_de_l.27homophobie"></span>Controverse au sujet de l\'homophobie</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=25" title="Modifier la section\xe2\x80\xaf: Controverse au sujet de l&#39;homophobie" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=25" title="Modifier le code source de la section : Controverse au sujet de l&#39;homophobie"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>D\xc3\xa8s la troisi\xc3\xa8me journ\xc3\xa9e du championnat, le match opposant l\'<a href="/wiki/Olympique_Gymnaste_Club_Nice" class="mw-redirect" title="Olympique Gymnaste Club Nice">OGC Nice</a> \xc3\xa0 l\'<a href="/wiki/Olympique_de_Marseille" title="Olympique de Marseille">Olympique de Marseille</a> est interrompu en raison d\'une banni\xc3\xa8re jug\xc3\xa9e <a href="/wiki/Homophobie" title="Homophobie">homophobe</a>&#160;: <span class="citation">\xc2\xab&#160;Bienvenue au groupe Ineos&#160;: \xc3\xa0 Nice aussi on aime la p\xc3\xa9dale&#160;\xc2\xbb</span>. Le match est arr\xc3\xaat\xc3\xa9 \xc3\xa0 la <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr> minute par l\'arbitre <a href="/wiki/Cl%C3%A9ment_Turpin" title="Cl\xc3\xa9ment Turpin">Cl\xc3\xa9ment Turpin</a> \xc3\xa0 la suite des chants des ultras de la Populaire Sud<sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span class="cite_crochet">[</span>16<span class="cite_crochet">]</span></a></sup>. La <a href="/wiki/Secr%C3%A9taire_d%27%C3%89tat_(France)" title="Secr\xc3\xa9taire d&#39;\xc3\x89tat (France)">secr\xc3\xa9taire d\'\xc3\x89tat</a> \xc3\xa0 l\'\xc3\xa9galit\xc3\xa9 entre les femmes et les hommes, <a href="/wiki/Marl%C3%A8ne_Schiappa" title="Marl\xc3\xa8ne Schiappa">Marl\xc3\xa8ne Schiappa</a>, f\xc3\xa9licite l\'arbitre <a href="/wiki/Cl%C3%A9ment_Turpin" title="Cl\xc3\xa9ment Turpin">Cl\xc3\xa9ment Turpin</a> pour sa d\xc3\xa9cision quelques minutes plus tard. Le <a href="/wiki/Minist%C3%A8re_de_l%27Int%C3%A9rieur_(France)" title="Minist\xc3\xa8re de l&#39;Int\xc3\xa9rieur (France)">ministre de l\'int\xc3\xa9rieur</a> <a href="/wiki/Christophe_Castaner" title="Christophe Castaner">Christophe Castaner</a> se dit <span class="citation">\xc2\xab&#160;pr\xc3\xaat \xc3\xa0 travailler avec la ministre charg\xc3\xa9 des Sports, mais aussi avec la <a href="/wiki/F%C3%A9d%C3%A9ration_fran%C3%A7aise_de_football" title="F\xc3\xa9d\xc3\xa9ration fran\xc3\xa7aise de football">F\xc3\xa9d\xc3\xa9ration fran\xc3\xa7aise</a> et la <a href="/wiki/Ligue_de_football_professionnel_(France)" title="Ligue de football professionnel (France)">Ligue</a>&#160;\xc2\xbb</span><sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span class="cite_crochet">[</span>17<span class="cite_crochet">]</span></a></sup>.\n</p>\n<div class="mw-heading mw-heading3"><h3 id="Matchs_repouss\xc3\xa9s"><span id="Matchs_repouss.C3.A9s"></span>Matchs repouss\xc3\xa9s</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=26" title="Modifier la section\xe2\x80\xaf: Matchs repouss\xc3\xa9s" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=26" title="Modifier le code source de la section : Matchs repouss\xc3\xa9s"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Lors de la troisi\xc3\xa8me journ\xc3\xa9e, les rencontres Lille-Saint-\xc3\x89tienne, Nice-Marseille et Montpellier-Lyon, reconnues comme les plus \xc3\xa0 risque, furent repouss\xc3\xa9es de quelques jours \xc3\xa0 la suite de la mobilisation des forces de l\xe2\x80\x99ordre pour le <a href="/wiki/Sommet_du_G7_de_2019" title="Sommet du G7 de 2019">sommet du G7</a> \xc3\xa0 <a href="/wiki/Biarritz" title="Biarritz">Biarritz</a><sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span class="cite_crochet">[</span>18<span class="cite_crochet">]</span></a></sup>. Ces matchs furent tout de m\xc3\xaame jou\xc3\xa9s avant le d\xc3\xa9but de la quatri\xc3\xa8me journ\xc3\xa9e et n\xe2\x80\x99ont donc pas \xc3\xa9t\xc3\xa9 consid\xc3\xa9r\xc3\xa9s comme report\xc3\xa9s.\n</p>\n<div class="mw-heading mw-heading2"><h2 id="Arr\xc3\xaat_subit_de_la_comp\xc3\xa9tition"><span id="Arr.C3.AAt_subit_de_la_comp.C3.A9tition"></span>Arr\xc3\xaat subit de la comp\xc3\xa9tition</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=27" title="Modifier la section\xe2\x80\xaf: Arr\xc3\xaat subit de la comp\xc3\xa9tition" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=27" title="Modifier le code source de la section : Arr\xc3\xaat subit de la comp\xc3\xa9tition"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="bandeau-container bandeau-section metadata bandeau-niveau-information"><div class="bandeau-cell bandeau-icone-css loupe">Article d\xc3\xa9taill\xc3\xa9&#160;: <a href="/wiki/Pand%C3%A9mie_de_Covid-19_en_France" title="Pand\xc3\xa9mie de Covid-19 en France">Pand\xc3\xa9mie de Covid-19 en France</a>.</div></div>\n<div class="mw-heading mw-heading3"><h3 id="Chronologie">Chronologie</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=28" title="Modifier la section\xe2\x80\xaf: Chronologie" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=28" title="Modifier le code source de la section : Chronologie"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>Le <time class="nowrap" datetime="2020-02-28" data-sort-value="2020-02-28">28 f\xc3\xa9vrier 2020</time>, se tient \xc3\xa0 Lyon une rencontre de ligue des champions OL-Juventus de Turin. Une controverse \xc3\xa9clate lorsque le gouvernement autorise le d\xc3\xa9placement de 5000 supporters italiens, alors pays europ\xc3\xa9en le plus durement touch\xc3\xa9 par la crise <a href="/wiki/Maladie_%C3%A0_coronavirus_2019" title="Maladie \xc3\xa0 coronavirus 2019">Covid</a>.\n</p><p>Le 5 mars, le gouvernement publie un d\xc3\xa9cret interdisant les r\xc3\xa9unions publiques de plus de 1000 personnes \xc3\xa0 compter du lundi 9 mars. La LFP d\xc3\xa9cide de maintenir l\'organisation de la <abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr>&#160;journ\xc3\xa9e de championnat qui se d\xc3\xa9roule du 6 au 8 mars, avec du public. Puis de poursuivre le championnat \xc3\xa0 <a href="/wiki/Huis_clos_(sport)" title="Huis clos (sport)">huis clos</a>.\n</p><p>Le 8 mars, se tient le match de Ligue 2, premier match \xc3\xa0 huis clos en raison de la jauge coronavirus.\n</p><p>Le <time class="nowrap" datetime="2020-03-07" data-sort-value="2020-03-07">7 mars 2020</time>, la rencontre entre le <a href="/wiki/Racing_Club_de_Strasbourg_Alsace" title="Racing Club de Strasbourg Alsace">RC Strasbourg</a> et le <a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a> (<abbr class="abbr" title="Vingt-huiti\xc3\xa8me">28<sup>e</sup></abbr>&#160;journ\xc3\xa9e) est report\xc3\xa9e \xc3\xa0 cause d\'un arr\xc3\xaat\xc3\xa9 de la pr\xc3\xa9fecture du <a href="/wiki/Bas-Rhin" title="Bas-Rhin">Bas-Rhin</a> concernant \xc2\xab&#160;la propagation du coronavirus&#160;\xc2\xbb<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span class="cite_crochet">[</span>19<span class="cite_crochet">]</span></a></sup>.\n</p><p>Le 11 mars, se tient \xc3\xa0 Paris une rencontre de ligue des champions Paris SG-Dortmund. Conform\xc3\xa9ment au d\xc3\xa9cret du 5 mars, le match se tient \xc3\xa0 huis clos. Pr\xc3\xa8s de 5 \xc3\xa0 6000 supporters se rassemblent n\xc3\xa9anmoins \xc3\xa0 l\'ext\xc3\xa9rieur du stade pour encourager leur \xc3\xa9quipe. Le pr\xc3\xa9fet de police de Paris refuse de prononcer la dispersion de la foule pour \xc3\xa9viter les troubles \xc3\xa0 l\'ordre public.\n</p><p>Le 13 mars 2020, craignant que les matchs de la <abbr class="abbr" title="Vingt-neuvi\xc3\xa8me">29<sup>e</sup></abbr>&#160;journ\xc3\xa9e pr\xc3\xa9vus \xc3\xa0 huis-clos produisent des attroupements similaires de supporters devant les stades, la <a href="/wiki/Ligue_de_football_professionnel_(France)" title="Ligue de football professionnel (France)">Ligue de football professionnel</a> (LFP), de sa propre initiative, suspend jusqu\'\xc3\xa0 nouvel ordre, les matchs de Ligue 1 et <a href="/wiki/Championnat_de_France_de_football_de_Ligue_2_2019-2020" class="mw-redirect" title="Championnat de France de football de Ligue 2 2019-2020">Ligue 2</a> en raison de la pand\xc3\xa9mie de Covid-19<sup id="cite_ref-26" class="reference"><a href="#cite_note-26"><span class="cite_crochet">[</span>20<span class="cite_crochet">]</span></a></sup>.\n</p><p>Le 17 mars, devant la propagation de l\'\xc3\xa9pid\xc3\xa9mie, le gouvernement proclame un confinement g\xc3\xa9n\xc3\xa9ralis\xc3\xa9 du pays. Le d\xc3\xa9cret est publi\xc3\xa9 le 18 mars, interdisant la pratique du sport professionnel jusqu\'au 31 mars, y compris \xc3\xa0 huis clos. La LFP ne peut plus prononcer la reprise de la comp\xc3\xa9tition sans la lev\xc3\xa9e de cette interdiction. Le d\xc3\xa9cret sur le confinement est ensuite prolong\xc3\xa9 jusqu\'au 17 avril puis \xc3\xa0 de multiples reprises jusqu\'au 10 juin.\n</p><p>Le 2 avril, le diffuseur <a href="/wiki/Canal_Plus" class="mw-redirect" title="Canal Plus">Canal Plus</a> par une lettre \xc3\xa0 la LFP se d\xc3\xa9clare lib\xc3\xa9r\xc3\xa9 de son obligation payer le dernier tiers des droits TV (200M\xe2\x82\xac) si le championnat ne reprend pas, et r\xc3\xa9clame une ristourne si le championnat devait reprendre en d\xc3\xa9cal\xc3\xa9. Dans le m\xc3\xaame courrier, il d\xc3\xa9clare ne pas vouloir n\xc3\xa9gocier avec le pr\xc3\xa9sident de la LFP mais seulement avec les dirigeants de club. Une d\xc3\xa9l\xc3\xa9gation regroupant le pr\xc3\xa9sident du Paris SG, de l\'OM, de Nice et de Toulouse est charg\xc3\xa9 de mener la n\xc3\xa9gociation avec Canal Plus au nom de l\'ensemble des clubs de L1 et L2.\n</p><p>Le contrat audiovisuel pr\xc3\xa9voit express\xc3\xa9ment que la totalit\xc3\xa9 de la somme est exigible, quel que soit le nombre de matchs jou\xc3\xa9s dans la saison, \xc3\xa0 la seule condition qu\'un titre de champion de France soit d\xc3\xa9cern\xc3\xa9. Un compromis est trouv\xc3\xa9 le 24 avril. Si le championnat ne reprend pas avant le 30 juin en raison des interdictions gouvernementales, alors la LFP ne r\xc3\xa9clamera pas les 200M\xe2\x82\xac. Mais si la LFP est autoris\xc3\xa9e par le gouvernement \xc3\xa0 reprendre la comp\xc3\xa9tition, alors la totalit\xc3\xa9 de la somme sera due par Canal Plus.\n</p><p>Le 28 avril 2020, <a href="/wiki/%C3%89douard_Philippe" title="\xc3\x89douard Philippe">\xc3\x89douard Philippe</a>, premier ministre, pr\xc3\xa9sente \xc3\xa0 l\'Assembl\xc3\xa9e nationale un plan de d\xc3\xa9confinement par \xc3\xa9tapes. Il s\'agit d\'un discours, qui n\'est pas suivi d\'un vote de l\'Assembl\xc3\xa9e. La lev\xc3\xa9e du confinement \xc3\xa9tant de la comp\xc3\xa9tence exclusive du gouvernement qui l\xc3\xa9gif\xc3\xa8re par d\xc3\xa9cret. Dans sa d\xc3\xa9claration, le premier Ministre d\xc3\xa9clare \xc2\xab&#160;La saison 19/20 de sport professionnel, notamment le football, ne pourra pas reprendre&#160;\xc2\xbb.\n</p><p>Le soir m\xc3\xaame du 28 avril, bien qu\'aucun texte l\xc3\xa9gislatif ne l\'ait finalement officialis\xc3\xa9<sup id="cite_ref-27" class="reference"><a href="#cite_note-27"><span class="cite_crochet">[</span>21<span class="cite_crochet">]</span></a></sup>, que le d\xc3\xa9cret qui ne sera publi\xc3\xa9 que le 5 mai ne fasse aucune mention de cette disposition annonc\xc3\xa9e dans le discours, le <a href="/wiki/Conseil_d%27administration" title="Conseil d&#39;administration">conseil d\'administration</a> de la <a href="/wiki/Ligue_de_football_professionnel_(France)" title="Ligue de football professionnel (France)">LFP</a> vote la fin officielle des championnats de Ligue 1 et Ligue 2<sup id="cite_ref-28" class="reference"><a href="#cite_note-28"><span class="cite_crochet">[</span>22<span class="cite_crochet">]</span></a></sup>. Il annonce la convocation pour le 30 avril de l\'assembl\xc3\xa9e g\xc3\xa9n\xc3\xa9rale extraordinaire de la ligue (20 clubs de L1 et 20 clubs de L2)  devant ent\xc3\xa9riner un classement<sup id="cite_ref-29" class="reference"><a href="#cite_note-29"><span class="cite_crochet">[</span>23<span class="cite_crochet">]</span></a></sup>.\n</p><p>Canal Plus d\xc3\xa9clare le 30 avril au matin \xc3\xaatre lib\xc3\xa9r\xc3\xa9 de son obligation de verser les 200M\xe2\x82\xac.\n</p><p>Le 30 avril, le conseil d\'administration de la Ligue d\xc3\xa9cide d\'ajourner l\'assembl\xc3\xa9e g\xc3\xa9n\xc3\xa9rale extraordinaire et vote de son propre chef un classement d\xc3\xa9finitif. Il inclut dans le r\xc3\xa8glement la clause permettant de d\xc3\xa9partager les \xc3\xa9galit\xc3\xa9s par la diff\xc3\xa9rence de but particulier en lieu et place de la diff\xc3\xa9rence de but g\xc3\xa9n\xc3\xa9rale. Cette modification ne s\'applique de fait qu\'aux clubs de Nice et Reims et permet \xc3\xa0 Nice, dont le pr\xc3\xa9sident est membre du conseil d\'administration, de gagner une place au classement, lui garantissant une participation \xc3\xa0 la coupe d\'Europe<sup id="cite_ref-30" class="reference"><a href="#cite_note-30"><span class="cite_crochet">[</span>24<span class="cite_crochet">]</span></a></sup>.\n</p>\n<div class="mw-heading mw-heading3"><h3 id="M\xc3\xa9thode_de_classement"><span id="M.C3.A9thode_de_classement"></span>M\xc3\xa9thode de classement</h3><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=29" title="Modifier la section\xe2\x80\xaf: M\xc3\xa9thode de classement" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=29" title="Modifier le code source de la section : M\xc3\xa9thode de classement"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<p>L\'arr\xc3\xaat du championnat \xc3\xa0 la journ\xc3\xa9e 28 s\'est vu contest\xc3\xa9 devant le Conseil d\'\xc3\x89tat par <a href="/wiki/Jean-Michel_Aulas" title="Jean-Michel Aulas">Jean-Michel Aulas</a> de l\'<a href="/wiki/Olympique_lyonnais" title="Olympique lyonnais">Olympique lyonnais</a>, dont la 7<sup>e</sup> place \xc3\xa9tait le plus mauvais r\xc3\xa9sultat depuis 23 ans, et l\'<a href="/wiki/Amiens_SC" class="mw-redirect" title="Amiens SC">Amiens SC</a>, rel\xc3\xa9gu\xc3\xa9. Le Conseil d\'\xc3\x89tat, saisi en proc\xc3\xa9dure de r\xc3\xa9f\xc3\xa9r\xc3\xa9, a d\xc3\xa9bout\xc3\xa9 les deux plaignants au motif que le conseil d\'administration de la LFP \xc3\xa9tait autoris\xc3\xa9 par les statuts de la LFP \xc3\xa0 prendre seul toutes les d\xc3\xa9cisions de modification du r\xc3\xa8glement, notamment sur le nombre de journ\xc3\xa9es composant une saison ou sur le mode de classement, y compris sur les saisons en cours, y compris sans devoir fournir une justification.\n</p><p>Julien Guyon, un math\xc3\xa9maticien fran\xc3\xa7ais enseignant aux \xc3\x89tats-Unis, constatant que chaque \xc3\xa9quipe avait b\xc3\xa9n\xc3\xa9fici\xc3\xa9 d\'un <a href="https://en.wikipedia.org/wiki/Strength_of_schedule" class="extiw" title="en:Strength of schedule">calendrier plus ou moins difficile</a>, et qu\'il serait donc in\xc3\xa9quitable d\'arr\xc3\xaater le classement \xc3\xa0 la journ\xc3\xa9e 28, avait propos\xc3\xa9 dans <i><a href="/wiki/Le_Monde" title="Le Monde">Le Monde</a></i> du 16 mars d\'utiliser les <a href="/wiki/Classement_Elo" title="Classement Elo">probabilit\xc3\xa9s de victoire</a> issues des r\xc3\xa9sultats des 28 premi\xc3\xa8res journ\xc3\xa9es, afin de calculer les r\xc3\xa9sultats des 10 derni\xc3\xa8res\n<sup id="cite_ref-31" class="reference"><a href="#cite_note-31"><span class="cite_crochet">[</span>25<span class="cite_crochet">]</span></a></sup>. Cette m\xc3\xa9thode n\'aurait pas modifi\xc3\xa9 les places pour l\'Europe et la rel\xc3\xa9gation, mais elle aurait notamment fait passer Montpellier devant Nice et Lyon.\n</p><p>N\xc3\xa9anmoins, cette formule n\'est pas retenue. Le r\xc3\xa8glement de la LFP ne pr\xc3\xa9voyait aucune m\xc3\xa9thode pour pallier ces cas de force majeure. Finalement, pour d\xc3\xa9terminer le classement final, la Ligue r\xc3\xa9unie en assembl\xc3\xa9e g\xc3\xa9n\xc3\xa9rale a opt\xc3\xa9 pour un indice de performance bas\xc3\xa9 sur la moyenne de points (ratio points d\xc3\xa9j\xc3\xa0 obtenus sur le nombre de matchs d\xc3\xa9j\xc3\xa0 jou\xc3\xa9s)<sup id="cite_ref-covid_2-3" class="reference"><a href="#cite_note-covid-2"><span class="cite_crochet">[</span>2<span class="cite_crochet">]</span></a></sup>. Le 18<sup>e</sup>, le N\xc3\xaemes Olympique, se maintient car le barrage est annul\xc3\xa9.\n</p>\n<div class="mw-heading mw-heading2"><h2 id="Notes_et_r\xc3\xa9f\xc3\xa9rences"><span id="Notes_et_r.C3.A9f.C3.A9rences"></span>Notes et r\xc3\xa9f\xc3\xa9rences</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=30" title="Modifier la section\xe2\x80\xaf: Notes et r\xc3\xa9f\xc3\xa9rences" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=30" title="Modifier le code source de la section : Notes et r\xc3\xa9f\xc3\xa9rences"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="references-small decimal" style="column-width:35em;"><ol class="references">\n<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage"><span class="noarchive">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lfp.fr/uploads/fichiers/Calendrier_general_competitions_LFP_2019_2020.pdf"><cite style="font-style:normal; color:var(--color-link-red, #d73333);">Calendrier g\xc3\xa9n\xc3\xa9ral des comp\xc3\xa9titions 2019\xe2\x80\x902020</cite></a>&#160;\xc2\xbb<sup class="plainlinks">(<a rel="nofollow" class="external text" href="https://web.archive.org/web/*/https://www.lfp.fr/uploads/fichiers/Calendrier_general_competitions_LFP_2019_2020.pdf">Archive.org</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.wikiwix.com/cache/?url=https://www.lfp.fr/uploads/fichiers/Calendrier_general_competitions_LFP_2019_2020.pdf">Wikiwix</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.is/https://www.lfp.fr/uploads/fichiers/Calendrier_general_competitions_LFP_2019_2020.pdf">Archive.is</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://webcache.googleusercontent.com/search?hl=fr&amp;q=cache:https://www.lfp.fr/uploads/fichiers/Calendrier_general_competitions_LFP_2019_2020.pdf">Google</a> \xe2\x80\xa2 <a href="/wiki/Projet:Correction_des_liens_externes#J&#39;ai_trouv\xc3\xa9_un_lien_mort,_que_faire_?" title="Projet:Correction des liens externes">Que faire&#160;?</a>)</sup></span>, sur <span class="italique">lfp.fr</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2019-04-28" data-sort-value="2019-04-28">28 avril 2019</time>)</small></span>.</span>\n</li>\n<li id="cite_note-covid-2"><span class="mw-cite-backlink noprint">\xe2\x86\x91 <sup><a href="#cite_ref-covid_2-0">a</a> <a href="#cite_ref-covid_2-1">b</a> <a href="#cite_ref-covid_2-2">c</a> et <a href="#cite_ref-covid_2-3">d</a></sup> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/Le-psg-officiellement-declare-champion-de-france-l-om-en-ligue-des-champions/1131024"><cite style="font-style:normal;">Le PSG officiellement d\xc3\xa9clar\xc3\xa9 champion de France, l\'OM en Ligue des champions</cite></a>&#160;\xc2\xbb, sur <span class="italique">lequipe.fr</span>, <time class="nowrap" datetime="2020-04-30" data-sort-value="2020-04-30">30 avril 2020</time> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2020-04-30" data-sort-value="2020-04-30">30 avril 2020</time>)</small></span>.</span>\n</li>\n<li id="cite_note-3"><span class="mw-cite-backlink"><a href="#cite_ref-3">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/Le-classement-des-budgets-de-ligue-1-le-psg-c-est-vingt-trois-fois-nimes/1047406"><cite style="font-style:normal;">Le classement des budgets des clubs de Ligue 1 en 2019-2020</cite></a>&#160;\xc2\xbb, sur <span class="italique">lequipe.fr</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2019-08-09" data-sort-value="2019-08-09">9 ao\xc3\xbbt 2019</time>)</small></span>.</span>\n</li>\n<li id="cite_note-4"><span class="mw-cite-backlink"><a href="#cite_ref-4">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage"><span class="noarchive">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lfp.fr/ligue1/affluences/club"><cite style="font-style:normal; color:var(--color-link-red, #d73333);">Ligue de Football Professionnel - Ligue 1 Conforama - Affluences par journ\xc3\xa9e, par club, taux de remplissage</cite></a>&#160;\xc2\xbb<sup class="plainlinks">(<a rel="nofollow" class="external text" href="https://web.archive.org/web/*/https://www.lfp.fr/ligue1/affluences/club">Archive.org</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.wikiwix.com/cache/?url=https://www.lfp.fr/ligue1/affluences/club">Wikiwix</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.is/https://www.lfp.fr/ligue1/affluences/club">Archive.is</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://webcache.googleusercontent.com/search?hl=fr&amp;q=cache:https://www.lfp.fr/ligue1/affluences/club">Google</a> \xe2\x80\xa2 <a href="/wiki/Projet:Correction_des_liens_externes#J&#39;ai_trouv\xc3\xa9_un_lien_mort,_que_faire_?" title="Projet:Correction des liens externes">Que faire&#160;?</a>)</sup></span>, sur <span class="italique">LFP.fr</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2019-09-01" data-sort-value="2019-09-01"><abbr class="abbr" title="premier">1<sup>er</sup></abbr> septembre 2019</time>)</small></span>.</span>\n</li>\n<li id="cite_note-11"><span class="mw-cite-backlink"><a href="#cite_ref-11">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage"><span class="noarchive">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lfp.fr/LFPStats/stats_but_details?competition=D1&amp;saison=103&amp;club=&amp;lieu=G&amp;butsME=M"><cite style="font-style:normal; color:var(--color-link-red, #d73333);">Buts marqu\xc3\xa9s par journ\xc3\xa9e</cite></a>&#160;\xc2\xbb<sup class="plainlinks">(<a rel="nofollow" class="external text" href="https://web.archive.org/web/*/https://www.lfp.fr/LFPStats/stats_but_details?competition=D1&amp;saison=103&amp;club=&amp;lieu=G&amp;butsME=M">Archive.org</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.wikiwix.com/cache/?url=https://www.lfp.fr/LFPStats/stats_but_details?competition=D1&amp;saison=103&amp;club=&amp;lieu=G&amp;butsME=M">Wikiwix</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.is/https://www.lfp.fr/LFPStats/stats_but_details?competition=D1&amp;saison=103&amp;club=&amp;lieu=G&amp;butsME=M">Archive.is</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://webcache.googleusercontent.com/search?hl=fr&amp;q=cache:https://www.lfp.fr/LFPStats/stats_but_details?competition=D1&amp;saison=103&amp;club=&amp;lieu=G&amp;butsME=M">Google</a> \xe2\x80\xa2 <a href="/wiki/Projet:Correction_des_liens_externes#J&#39;ai_trouv\xc3\xa9_un_lien_mort,_que_faire_?" title="Projet:Correction des liens externes">Que faire&#160;?</a>)</sup></span>, sur <span class="italique">lfp.fr</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2019-10-06" data-sort-value="2019-10-06">6 octobre 2019</time>)</small></span>.</span>\n</li>\n<li id="cite_note-12"><span class="mw-cite-backlink"><a href="#cite_ref-12">\xe2\x86\x91</a> </span><span class="reference-text"><abbr class="abbr indicateur-langue" title="Langue : fran\xc3\xa7ais">(fr)</abbr> <span class="ouvrage">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.ligue1.fr/Articles/ACTU/2020/05/06/buteurs-kylian-mbappe-reste-sur-le-trone"><cite style="font-style:normal;">Buteurs&#160;: Kylian Mbapp\xc3\xa9 reste sur le tr\xc3\xb4ne</cite></a>&#160;\xc2\xbb, sur <span class="italique">ligue1.fr</span></span>.</span>\n</li>\n<li id="cite_note-affluences_lfp-13"><span class="mw-cite-backlink noprint">\xe2\x86\x91 <sup><a href="#cite_ref-affluences_lfp_13-0">a</a> et <a href="#cite_ref-affluences_lfp_13-1">b</a></sup> </span><span class="reference-text"><span class="ouvrage"><span class="noarchive">\xc2\xab&#160;<a rel="nofollow" class="external text" href="http://www.lfp.fr/ligue1/affluences/journee#"><cite style="font-style:normal; color:var(--color-link-red, #d73333);">Affluences par journ\xc3\xa9e, par club, taux de remplissage</cite></a>&#160;\xc2\xbb<sup class="plainlinks">(<a rel="nofollow" class="external text" href="https://web.archive.org/web/*/http://www.lfp.fr/ligue1/affluences/journee#">Archive.org</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.wikiwix.com/cache/?url=http://www.lfp.fr/ligue1/affluences/journee#">Wikiwix</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://archive.is/http://www.lfp.fr/ligue1/affluences/journee#">Archive.is</a> \xe2\x80\xa2 <a rel="nofollow" class="external text" href="https://webcache.googleusercontent.com/search?hl=fr&amp;q=cache:http://www.lfp.fr/ligue1/affluences/journee#">Google</a> \xe2\x80\xa2 <a href="/wiki/Projet:Correction_des_liens_externes#J&#39;ai_trouv\xc3\xa9_un_lien_mort,_que_faire_?" title="Projet:Correction des liens externes">Que faire&#160;?</a>)</sup></span>, sur <span class="italique">lfp.fr</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2020-01-26" data-sort-value="2020-01-26">26 janvier 2020</time>)</small></span>.</span>\n</li>\n<li id="cite_note-14"><span class="mw-cite-backlink"><a href="#cite_ref-14">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://deux-zero.com/index.php?Code=L1&amp;Item=AffluencesEpreuve&amp;Edition=2019-2020"><cite style="font-style:normal;">deux-zero.com - Ligue 1 2019-2020 - Affluences</cite></a>&#160;\xc2\xbb, sur <span class="italique">Soccerway</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2020-06-29" data-sort-value="2020-06-29">29 juin 2020</time>)</small></span>.</span>\n</li>\n<li id="cite_note-15"><span class="mw-cite-backlink"><a href="#cite_ref-15">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="L.P.2019">L.P., \xc2\xab&#160;<a rel="nofollow" class="external text" href="https://rmcsport.bfmtv.com/football/rennes-un-record-pour-camavinga-joueur-du-mois-en-ligue-1-a-16-ans-1768818.html"><cite style="font-style:normal;">Rennes&#160;: un record pour Camavinga, joueur du mois en Ligue 1 \xc3\xa0 16 ans</cite></a>&#160;\xc2\xbb, <a href="/wiki/RMC_Sport_(agence_de_presse)" title="RMC Sport (agence de presse)">RMC Sport</a>, <time class="nowrap" datetime="2019-09-16" data-sort-value="2019-09-16">16 septembre 2019</time></span>.</span>\n</li>\n<li id="cite_note-16"><span class="mw-cite-backlink"><a href="#cite_ref-16">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2019">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://lequipe.fr/Football/Actualites/Ligue-1-victor-osimhen-lille-elu-joueur-du-mois-de-septembre/1070662"><cite style="font-style:normal;">Ligue 1&#160;: Victor Osimhen (Lille) \xc3\xa9lu joueur du mois de septembre</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/L%27%C3%89quipe" title="L&#39;\xc3\x89quipe">L\'\xc3\x89quipe</a></span>, <time class="nowrap" datetime="2019-10-17" data-sort-value="2019-10-17">17 octobre 2019</time></span>.</span>\n</li>\n<li id="cite_note-17"><span class="mw-cite-backlink"><a href="#cite_ref-17">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2019">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.goal.com/fr/news/trophees-unfp-thiago-silva-joueur-du-mois-doctobre/jjn6zmdu1dyczhxdmtzqwne9"><cite style="font-style:normal;">Troph\xc3\xa9es UNFP&#160;: Thiago Silva joueur du mois d\'octobre</cite></a>&#160;\xc2\xbb, sur <span class="italique">goal.com</span>, <time class="nowrap" datetime="2019-11-13" data-sort-value="2019-11-13">13 novembre 2019</time></span>.</span>\n</li>\n<li id="cite_note-18"><span class="mw-cite-backlink"><a href="#cite_ref-18">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2019">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/Ligue-1-jeff-reine-adelaide-ol-elu-joueur-du-mois-de-novembre/1091937"><cite style="font-style:normal;">Ligue 1&#160;: Jeff Reine-Ad\xc3\xa9la\xc3\xafde (OL) \xc3\xa9lu joueur du mois de novembre</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/L%27%C3%89quipe" title="L&#39;\xc3\x89quipe">L\'\xc3\x89quipe</a></span>, <time class="nowrap" datetime="2019-12-19" data-sort-value="2019-12-19">19 d\xc3\xa9cembre 2019</time></span>.</span>\n</li>\n<li id="cite_note-19"><span class="mw-cite-backlink"><a href="#cite_ref-19">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="Monegier2020"><span class="ouvrage" id="Tom_Monegier2020">Tom Monegier, \xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.footmercato.net/flash-mercato/ligue-1-wissam-ben-yedder-elu-joueur-du-mois-de-decembre_272439"><cite style="font-style:normal;">Ligue 1&#160;: Wissam Ben Yedder \xc3\xa9lu joueur du mois de d\xc3\xa9cembre</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/Foot_Mercato" title="Foot Mercato">Foot Mercato</a></span>, <time class="nowrap" datetime="2020-01-23" data-sort-value="2020-01-23">23 janvier 2020</time></span></span>.</span>\n</li>\n<li id="cite_note-20"><span class="mw-cite-backlink"><a href="#cite_ref-20">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="http://sport24.lefigaro.fr/football/ligue-1/fil-info/neymar-elu-joueur-du-mois-de-janvier-993755"><cite style="font-style:normal;">Neymar \xc3\xa9lu joueur du mois de janvier</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/Sport24.com" title="Sport24.com">Sport24.com</a> / <a href="/wiki/Le_Figaro" title="Le Figaro">Le Figaro</a></span>, <time class="nowrap" datetime="2020-02-20" data-sort-value="2020-02-20">20 f\xc3\xa9vrier 2020</time></span>.</span>\n</li>\n<li id="cite_note-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es-21"><span class="mw-cite-backlink noprint">\xe2\x86\x91 <sup><a href="#cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-0">a</a> <a href="#cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-1">b</a> <a href="#cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-2">c</a> et <a href="#cite_ref-L&#39;UNFP_officialise_l&#39;annulation_de_la_c\xc3\xa9r\xc3\xa9monie_de_ses_Troph\xc3\xa9es_21-3">d</a></sup> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/L-unfp-officialise-l-annulation-de-la-ceremonie-de-ses-trophees/1135910"><cite style="font-style:normal;">L\'UNFP officialise l\'annulation de la c\xc3\xa9r\xc3\xa9monie de ses Troph\xc3\xa9es</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/L%27%C3%89quipe" title="L&#39;\xc3\x89quipe">L\'\xc3\x89quipe</a></span>, <time class="nowrap" datetime="2020-05-19" data-sort-value="2020-05-19">19 mai 2020</time></span>.</span>\n</li>\n<li id="cite_note-22"><span class="mw-cite-backlink"><a href="#cite_ref-22">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="\xc3\xa0_21h44\xc3\x80_06h362019"><span class="ouvrage" id="Par_A._R._Le_28_ao\xc3\xbbt_2019_\xc3\xa0_21h44Modifi\xc3\xa9_Le_29_Ao\xc3\xbbt_2019_\xc3\x80_06h362019">Par A. R. Le 28 ao\xc3\xbbt 2019 <span class="nom_auteur">\xc3\xa0 21h44</span> et Modifi\xc3\xa9 Le 29 Ao\xc3\xbbt 2019 <span class="nom_auteur">\xc3\x80 06h36</span>, \xc2\xab&#160;<a rel="nofollow" class="external text" href="http://www.leparisien.fr/sports/football/foot-le-match-nice-om-interrompu-apres-des-banderoles-homophobes-28-08-2019-8141184.php"><cite style="font-style:normal;">Ligue 1&#160;: Nice-OM interrompu apr\xc3\xa8s des banderoles et des chants homophobes</cite></a>&#160;\xc2\xbb, sur <span class="italique">leparisien.fr</span>, <time class="nowrap" datetime="2019-08-28" data-sort-value="2019-08-28">28 ao\xc3\xbbt 2019</time> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2019-10-02" data-sort-value="2019-10-02">2 octobre 2019</time>)</small></span></span>.</span>\n</li>\n<li id="cite_note-23"><span class="mw-cite-backlink"><a href="#cite_ref-23">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2019">\xc2\xab&#160;<a rel="nofollow" class="external text" href="http://www.lefigaro.fr/politique/le-scan/banderoles-homophobes-marlene-schiappa-felicite-l-arbitre-d-avoir-interrompu-le-match-20190829"><cite style="font-style:normal;">Banderoles homophobes&#160;: Marl\xc3\xa8ne Schiappa f\xc3\xa9licite l\xe2\x80\x99arbitre d\xe2\x80\x99avoir \xc2\xabinterrompu le match\xc2\xbb</cite></a>&#160;\xc2\xbb, sur <span class="italique">lefigaro.fr</span>, <time class="nowrap" datetime="2019-08-29" data-sort-value="2019-08-29">29 ao\xc3\xbbt 2019</time> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2019-10-02" data-sort-value="2019-10-02">2 octobre 2019</time>)</small></span>.</span>\n</li>\n<li id="cite_note-24"><span class="mw-cite-backlink"><a href="#cite_ref-24">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2019">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://rmcsport.bfmtv.com/football/pourquoi-le-g7-a-biarritz-perturbe-la-3e-journee-de-ligue-1-1754248.html"><cite style="font-style:normal;">Pourquoi le G7 \xc3\xa0 Biarritz perturbe la 3e journ\xc3\xa9e de Ligue 1</cite></a>&#160;\xc2\xbb, sur <span class="italique">BFM TV / RMC Sport</span>, <time class="nowrap" datetime="2019-08-23" data-sort-value="2019-08-23">23 ao\xc3\xbbt 2019</time></span>.</span>\n</li>\n<li id="cite_note-25"><span class="mw-cite-backlink"><a href="#cite_ref-25">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/Coronavirus-strasbourg-psg-reporte/1117119"><cite style="font-style:normal;">Coronavirus&#160;: Strasbourg-PSG report\xc3\xa9</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/L%27%C3%89quipe" title="L&#39;\xc3\x89quipe">L\'\xc3\x89quipe</a></span>, <time class="nowrap" datetime="2020-03-06" data-sort-value="2020-03-06">6 mars 2020</time></span>.</span>\n</li>\n<li id="cite_note-26"><span class="mw-cite-backlink"><a href="#cite_ref-26">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/Coronavirus-la-ligue-1-et-la-ligue-2-suspendues-immediatement-et-jusqu-a-nouvel-ordre/1119317"><cite style="font-style:normal;">Coronavirus&#160;: la Ligue 1 et la Ligue 2 suspendues imm\xc3\xa9diatement et jusqu\'\xc3\xa0 nouvel ordre</cite></a>&#160;\xc2\xbb, sur <span class="italique"><a href="/wiki/L%27%C3%89quipe" title="L&#39;\xc3\x89quipe">L\'\xc3\x89quipe</a></span>, <time class="nowrap" datetime="2020-03-13" data-sort-value="2020-03-13">13 mars 2020</time></span>.</span>\n</li>\n<li id="cite_note-27"><span class="mw-cite-backlink"><a href="#cite_ref-27">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.laprovence.com/actu/en-direct/5974009/coronavirus-la-saison-de-ligue-1-2019-2020-est-terminee.html"><cite style="font-style:normal;">Coronavirus&#160;: la saison de Ligue 1 termin\xc3\xa9e, pas de grandes manifestations sportives avant septembre, annonce \xc3\x89douard Philippe</cite></a>&#160;\xc2\xbb, sur <span class="italique">LaProvence.com</span>, <time class="nowrap" datetime="2020-04-28" data-sort-value="2020-04-28">28 avril 2020</time> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2020-04-28" data-sort-value="2020-04-28">28 avril 2020</time>)</small></span>.</span>\n</li>\n<li id="cite_note-28"><span class="mw-cite-backlink"><a href="#cite_ref-28">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="2020">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lequipe.fr/Football/Actualites/La-fin-des-championnats-a-ete-votee/1131008"><cite style="font-style:normal;">La fin des championnats a \xc3\xa9t\xc3\xa9 vot\xc3\xa9e</cite></a>&#160;\xc2\xbb, sur <span class="italique">lequipe.fr</span>, <time class="nowrap" datetime="2020-04-30" data-sort-value="2020-04-30">30 avril 2020</time> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2020-04-30" data-sort-value="2020-04-30">30 avril 2020</time>)</small></span>.</span>\n</li>\n<li id="cite_note-29"><span class="mw-cite-backlink"><a href="#cite_ref-29">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lfp.fr/proces-verbaux/conseil-administration"><cite style="font-style:normal;">Conseil Administration du 28 avril 2020</cite></a>&#160;\xc2\xbb, sur <span class="italique">LFP</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2022-06-15" data-sort-value="2022-06-15">15 juin 2022</time>)</small></span>.</span>\n</li>\n<li id="cite_note-30"><span class="mw-cite-backlink"><a href="#cite_ref-30">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage">\xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lfp.fr/proces-verbaux/conseil-administration"><cite style="font-style:normal;">Conseil Administration du 30 avril 2020</cite></a>&#160;\xc2\xbb, sur <span class="italique">LFP</span> <small style="line-height:1em;">(consult\xc3\xa9 le <time class="nowrap" datetime="2022-06-15" data-sort-value="2022-06-15">15 juin 2022</time>)</small></span>.</span>\n</li>\n<li id="cite_note-31"><span class="mw-cite-backlink"><a href="#cite_ref-31">\xe2\x86\x91</a> </span><span class="reference-text"><span class="ouvrage" id="Guyon2020"><span class="ouvrage" id="Julien_Guyon2020">Julien Guyon, \xc2\xab&#160;<a rel="nofollow" class="external text" href="https://www.lemonde.fr/sport/article/2020/03/16/football-comment-decider-du-classement-final-de-la-ligue-1-si-elle-devait-s-arreter-ici_6033217_3242.html"><cite style="font-style:normal;">Football&#160;: comment d\xc3\xa9cider du classement final de la Ligue 1 si elle devait s\xe2\x80\x99arr\xc3\xaater ici&#160;?</cite></a>&#160;\xc2\xbb, <i>Le Monde</i>, <time class="nowrap" datetime="2020-03-16" data-sort-value="2020-03-16">16 mars 2020</time></span></span>.</span>\n</li>\n</ol>\n</div>\n<div class="mw-heading mw-heading2"><h2 id="Voir_aussi">Voir aussi</h2><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;veaction=edit&amp;section=31" title="Modifier la section\xe2\x80\xaf: Voir aussi" class="mw-editsection-visualeditor"><span>modifier</span></a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;action=edit&amp;section=31" title="Modifier le code source de la section : Voir aussi"><span>modifier le code</span></a><span class="mw-editsection-bracket">]</span></span></div>\n<div class="navbox-container" style="clear:both;">\n<table class="navbox collapsible noprint autocollapse" style="">\n<tbody><tr><th class="navbox-title" colspan="2" style="background:#99cc99;"><div style="float:left; width:6em; text-align:left"><div class="noprint plainlinks nowrap tnavbar" style="padding:0; font-size:xx-small; color:var(--color-emphasized, #000000);"><a href="/wiki/Mod%C3%A8le:Palette_Saisons_du_championnat_de_France_de_football" title="Mod\xc3\xa8le:Palette Saisons du championnat de France de football"><abbr class="abbr" title="Voir ce mod\xc3\xa8le.">v</abbr></a>&#160;\xc2\xb7 <a class="external text" href="https://fr.wikipedia.org/w/index.php?title=Mod%C3%A8le:Palette_Saisons_du_championnat_de_France_de_football&amp;action=edit"><abbr class="abbr" title="Modifier ce mod\xc3\xa8le. Merci de pr\xc3\xa9visualiser avant de sauvegarder.">m</abbr></a></div></div><div style="font-size:110%">Saisons du <a href="/wiki/Championnat_de_France_de_football" title="Championnat de France de football">championnat de France de football</a></div></th>\n</tr>  <tr>\n<th class="navbox-group" style="vertical-align:middle;background:#B3D9B3;">Division Nationale<br />(1932-1972)</th>\n<td class="navbox-list" style="background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_de_France_de_football_1932-1933" title="Championnat de France de football 1932-1933">1932-1933</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1933-1934" title="Championnat de France de football 1933-1934">1933-1934</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1934-1935" title="Championnat de France de football 1934-1935">1934-1935</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1935-1936" title="Championnat de France de football 1935-1936">1935-1936</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1936-1937" title="Championnat de France de football 1936-1937">1936-1937</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1937-1938" title="Championnat de France de football 1937-1938">1937-1938</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1938-1939" title="Championnat de France de football 1938-1939">1938-1939</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1939-1940" title="Championnat de France de football 1939-1940"><style data-mw-deduplicate="TemplateStyles:r216724214">.mw-parser-output .texte-gris{color:var(--color-subtle,#808080)}html.skin-theme-clientpref-day .mw-parser-output .texte-gris{color:#808080}</style><span class="texte-gris">1939-1940</span></a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1940-1941" title="Championnat de France de football 1940-1941"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">1940-1941</span></a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1941-1942" title="Championnat de France de football 1941-1942"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">1941-1942</span></a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1942-1943" title="Championnat de France de football 1942-1943"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">1942-1943</span></a></li>\n<li><a href="/wiki/Championnat_de_France_f%C3%A9d%C3%A9ral_de_football_1943-1944" title="Championnat de France f\xc3\xa9d\xc3\xa9ral de football 1943-1944"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">1943-1944</span></a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1944-1945" title="Championnat de France de football 1944-1945"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">1944-1945</span></a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1945-1946" title="Championnat de France de football 1945-1946">1945-1946</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1946-1947" title="Championnat de France de football 1946-1947">1946-1947</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1947-1948" title="Championnat de France de football 1947-1948">1947-1948</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1948-1949" title="Championnat de France de football 1948-1949">1948-1949</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1949-1950" title="Championnat de France de football 1949-1950">1949-1950</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1950-1951" title="Championnat de France de football 1950-1951">1950-1951</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1951-1952" title="Championnat de France de football 1951-1952">1951-1952</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1952-1953" title="Championnat de France de football 1952-1953">1952-1953</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1953-1954" title="Championnat de France de football 1953-1954">1953-1954</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1954-1955" title="Championnat de France de football 1954-1955">1954-1955</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1955-1956" title="Championnat de France de football 1955-1956">1955-1956</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1956-1957" title="Championnat de France de football 1956-1957">1956-1957</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1957-1958" title="Championnat de France de football 1957-1958">1957-1958</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1958-1959" title="Championnat de France de football 1958-1959">1958-1959</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1959-1960" title="Championnat de France de football 1959-1960">1959-1960</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1960-1961" title="Championnat de France de football 1960-1961">1960-1961</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1961-1962" title="Championnat de France de football 1961-1962">1961-1962</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1962-1963" title="Championnat de France de football 1962-1963">1962-1963</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1963-1964" title="Championnat de France de football 1963-1964">1963-1964</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1964-1965" title="Championnat de France de football 1964-1965">1964-1965</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1965-1966" title="Championnat de France de football 1965-1966">1965-1966</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1966-1967" title="Championnat de France de football 1966-1967">1966-1967</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1967-1968" title="Championnat de France de football 1967-1968">1967-1968</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1968-1969" title="Championnat de France de football 1968-1969">1968-1969</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1969-1970" title="Championnat de France de football 1969-1970">1969-1970</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1970-1971" title="Championnat de France de football 1970-1971">1970-1971</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1971-1972" title="Championnat de France de football 1971-1972">1971-1972</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="vertical-align:middle;background:#B3D9B3;">Division 1<br />(1972-2002)</th>\n<td class="navbox-list navbox-even" style="background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_de_France_de_football_1972-1973" title="Championnat de France de football 1972-1973">1972-1973</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1973-1974" title="Championnat de France de football 1973-1974">1973-1974</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1974-1975" title="Championnat de France de football 1974-1975">1974-1975</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1975-1976" title="Championnat de France de football 1975-1976">1975-1976</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1976-1977" title="Championnat de France de football 1976-1977">1976-1977</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1977-1978" title="Championnat de France de football 1977-1978">1977-1978</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1978-1979" title="Championnat de France de football 1978-1979">1978-1979</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1979-1980" title="Championnat de France de football 1979-1980">1979-1980</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1980-1981" title="Championnat de France de football 1980-1981">1980-1981</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1981-1982" title="Championnat de France de football 1981-1982">1981-1982</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1982-1983" title="Championnat de France de football 1982-1983">1982-1983</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1983-1984" title="Championnat de France de football 1983-1984">1983-1984</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1984-1985" title="Championnat de France de football 1984-1985">1984-1985</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1985-1986" title="Championnat de France de football 1985-1986">1985-1986</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1986-1987" title="Championnat de France de football 1986-1987">1986-1987</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1987-1988" title="Championnat de France de football 1987-1988">1987-1988</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1988-1989" title="Championnat de France de football 1988-1989">1988-1989</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1989-1990" title="Championnat de France de football 1989-1990">1989-1990</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1990-1991" title="Championnat de France de football 1990-1991">1990-1991</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1991-1992" title="Championnat de France de football 1991-1992">1991-1992</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1992-1993" title="Championnat de France de football 1992-1993">1992-1993</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1993-1994" title="Championnat de France de football 1993-1994">1993-1994</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1994-1995" title="Championnat de France de football 1994-1995">1994-1995</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1995-1996" title="Championnat de France de football 1995-1996">1995-1996</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1996-1997" title="Championnat de France de football 1996-1997">1996-1997</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1997-1998" title="Championnat de France de football 1997-1998">1997-1998</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1998-1999" title="Championnat de France de football 1998-1999">1998-1999</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_1999-2000" title="Championnat de France de football 1999-2000">1999-2000</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2000-2001" title="Championnat de France de football 2000-2001">2000-2001</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2001-2002" title="Championnat de France de football 2001-2002">2001-2002</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="vertical-align:middle;background:#B3D9B3;">Ligue 1<br />(depuis 2002)</th>\n<td class="navbox-list" style="background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_de_France_de_football_2002-2003" title="Championnat de France de football 2002-2003">2002-2003</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2003-2004" title="Championnat de France de football 2003-2004">2003-2004</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2004-2005" title="Championnat de France de football 2004-2005">2004-2005</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2005-2006" title="Championnat de France de football 2005-2006">2005-2006</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2006-2007" title="Championnat de France de football 2006-2007">2006-2007</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2007-2008" title="Championnat de France de football 2007-2008">2007-2008</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2008-2009" title="Championnat de France de football 2008-2009">2008-2009</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2009-2010" title="Championnat de France de football 2009-2010">2009-2010</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2010-2011" title="Championnat de France de football 2010-2011">2010-2011</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2011-2012" title="Championnat de France de football 2011-2012">2011-2012</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2012-2013" title="Championnat de France de football 2012-2013">2012-2013</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2013-2014" title="Championnat de France de football 2013-2014">2013-2014</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2014-2015" title="Championnat de France de football 2014-2015">2014-2015</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2015-2016" title="Championnat de France de football 2015-2016">2015-2016</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2016-2017" title="Championnat de France de football 2016-2017">2016-2017</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2017-2018" title="Championnat de France de football 2017-2018">2017-2018</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">2018-2019</a></li>\n<li><a class="mw-selflink selflink">2019-2020</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2020-2021" title="Championnat de France de football 2020-2021">2020-2021</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2021-2022" title="Championnat de France de football 2021-2022">2021-2022</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2022-2023" title="Championnat de France de football 2022-2023">2022-2023</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2023-2024" title="Championnat de France de football 2023-2024">2023-2024</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_2024-2025" title="Championnat de France de football 2024-2025">2024-2025</a></li></ul>\n</div></td>\n</tr>                            </tbody></table>\n<table class="navbox collapsible noprint autocollapse" style="">\n<tbody><tr><th class="navbox-title" colspan="2" style="background:#99cc99; color:#000000;"><div style="float:left; width:6em; text-align:left"><div class="noprint plainlinks nowrap tnavbar" style="padding:0; font-size:xx-small; color:var(--color-emphasized, #000000);"><a href="/wiki/Mod%C3%A8le:Palette_Football_2019-20" title="Mod\xc3\xa8le:Palette Football 2019-20"><abbr class="abbr" title="Voir ce mod\xc3\xa8le.">v</abbr></a>&#160;\xc2\xb7 <a class="external text" href="https://fr.wikipedia.org/w/index.php?title=Mod%C3%A8le:Palette_Football_2019-20&amp;action=edit"><abbr class="abbr" title="Modifier ce mod\xc3\xa8le. Merci de pr\xc3\xa9visualiser avant de sauvegarder.">m</abbr></a></div></div><div style="font-size:110%">Championnats nationaux de premi\xc3\xa8re division 2019-2020 \xc3\xa0 travers le monde</div></th>\n</tr>  <tr>\n<th class="navbox-group" style="background:#B3D9B3;"><a href="/wiki/Conf%C3%A9d%C3%A9ration_africaine_de_football" title="Conf\xc3\xa9d\xc3\xa9ration africaine de football">CAF</a></th>\n<td class="navbox-list" style="background:#E6F2E6;"><table class="navbox-subgroup" style="">\n<tbody><tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">Masculin</th>\n<td class="navbox-list" style=";"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_d%27Afrique_du_Sud_de_football_2019-2020" title="Championnat d&#39;Afrique du Sud de football 2019-2020">Afrique du Sud</a></li>\n<li><a href="/wiki/Championnat_d%27Alg%C3%A9rie_de_football_2019-2020" title="Championnat d&#39;Alg\xc3\xa9rie de football 2019-2020">Alg\xc3\xa9rie</a></li>\n<li><a href="/wiki/Championnat_d%27Angola_de_football_2019-2020" title="Championnat d&#39;Angola de football 2019-2020">Angola</a></li>\n<li><a href="/wiki/Championnat_du_B%C3%A9nin_de_football_2019-2020" title="Championnat du B\xc3\xa9nin de football 2019-2020">B\xc3\xa9nin</a></li>\n<li><a href="/wiki/Championnat_du_Botswana_de_football_2019-2020" title="Championnat du Botswana de football 2019-2020">Botswana</a></li>\n<li><a href="/wiki/Championnat_du_Burkina_Faso_de_football_2019-2020" title="Championnat du Burkina Faso de football 2019-2020">Burkina Faso</a></li>\n<li><a href="/wiki/Championnat_du_Burundi_de_football_2019-2020" title="Championnat du Burundi de football 2019-2020">Burundi</a></li>\n<li>Cameroun\n<ul><li><a href="/wiki/Championnat_du_Cameroun_de_football_2019" title="Championnat du Cameroun de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Cameroun_de_football_2019-2020" title="Championnat du Cameroun de football 2019-2020">2019-2020</a></li></ul></li>\n<li>Cap-Vert\n<ul><li><a href="/wiki/Championnat_du_Cap-Vert_de_football_2019" title="Championnat du Cap-Vert de football 2019">2019</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">2020</span></li></ul></li>\n<li>Comores\n<ul><li><a href="/wiki/Championnat_des_Comores_de_football_2019" title="Championnat des Comores de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_des_Comores_de_football_2020" title="Championnat des Comores de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Congo_de_football_2019-2020" title="Championnat du Congo de football 2019-2020">Congo</a></li>\n<li><a href="/wiki/Championnat_de_r%C3%A9publique_d%C3%A9mocratique_du_Congo_de_football_2019-2020" title="Championnat de r\xc3\xa9publique d\xc3\xa9mocratique du Congo de football 2019-2020">RD Congo</a></li>\n<li><a href="/wiki/Championnat_de_C%C3%B4te_d%27Ivoire_de_football_2019-2020" title="Championnat de C\xc3\xb4te d&#39;Ivoire de football 2019-2020">C\xc3\xb4te d\'Ivoire</a></li>\n<li><a href="/wiki/Championnat_de_Djibouti_de_football_2019-2020" title="Championnat de Djibouti de football 2019-2020">Djibouti</a></li>\n<li><a href="/wiki/Championnat_d%27%C3%89gypte_de_football_2019-2020" title="Championnat d&#39;\xc3\x89gypte de football 2019-2020">\xc3\x89gypte</a></li>\n<li><a href="/wiki/Championnat_d%27%C3%89thiopie_de_football_2019-2020" title="Championnat d&#39;\xc3\x89thiopie de football 2019-2020">\xc3\x89thiopie</a></li>\n<li><a href="/wiki/Championnat_du_Gabon_de_football_2020" title="Championnat du Gabon de football 2020">Gabon</a></li>\n<li><a href="/wiki/Championnat_de_Gambie_de_football_2019-2020" title="Championnat de Gambie de football 2019-2020">Gambie</a></li>\n<li><a href="/wiki/Championnat_du_Ghana_de_football_2019-2020" title="Championnat du Ghana de football 2019-2020">Ghana</a></li>\n<li><a href="/wiki/Championnat_de_Guin%C3%A9e_de_football_2019-2020" title="Championnat de Guin\xc3\xa9e de football 2019-2020">Guin\xc3\xa9e</a></li>\n<li><a href="/wiki/Championnat_de_Guin%C3%A9e-Bissau_de_football_2019-2020" title="Championnat de Guin\xc3\xa9e-Bissau de football 2019-2020">Guin\xc3\xa9e-Bissau</a></li>\n<li>Guin\xc3\xa9e \xc3\xa9quatoriale\n<ul><li><a href="/wiki/Championnat_de_Guin%C3%A9e_%C3%A9quatoriale_de_football_2019" title="Championnat de Guin\xc3\xa9e \xc3\xa9quatoriale de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Guin%C3%A9e_%C3%A9quatoriale_de_football_2020" title="Championnat de Guin\xc3\xa9e \xc3\xa9quatoriale de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Kenya_de_football_2019-2020" title="Championnat du Kenya de football 2019-2020">Kenya</a></li>\n<li><a href="/wiki/Championnat_du_Lesotho_de_football_2019-2020" title="Championnat du Lesotho de football 2019-2020">Lesotho</a></li>\n<li>Liberia\n<ul><li><a href="/wiki/Championnat_du_Liberia_de_football_2019" title="Championnat du Liberia de football 2019">2019</a></li></ul></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">Libye</span></li>\n<li>Madagascar\n<ul><li><a href="/wiki/Championnat_de_Madagascar_de_football_2019" title="Championnat de Madagascar de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Madagascar_de_football_2019-2020" title="Championnat de Madagascar de football 2019-2020">2019-2020</a></li></ul></li>\n<li>Malawi\n<ul><li><a href="/wiki/Championnat_du_Malawi_de_football_2019" title="Championnat du Malawi de football 2019">2019</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">2020</span></li></ul></li>\n<li><a href="/wiki/Championnat_du_Mali_de_football_2019-2020" title="Championnat du Mali de football 2019-2020">Mali</a></li>\n<li><a href="/wiki/Championnat_du_Maroc_de_football_2019-2020" title="Championnat du Maroc de football 2019-2020">Maroc</a></li>\n<li><a href="/wiki/Championnat_de_Maurice_de_football_2019-2020" title="Championnat de Maurice de football 2019-2020">Maurice</a></li>\n<li><a href="/wiki/Championnat_de_Mauritanie_de_football_2019-2020" title="Championnat de Mauritanie de football 2019-2020">Mauritanie</a></li>\n<li>Mozambique\n<ul><li><a href="/wiki/Championnat_du_Mozambique_de_football_2019" title="Championnat du Mozambique de football 2019">2019</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">2020</span></li></ul></li>\n<li><a href="/wiki/Championnat_de_Namibie_de_football_2019-2020" title="Championnat de Namibie de football 2019-2020">Namibie</a></li>\n<li><a href="/wiki/Championnat_du_Niger_de_football_2019-2020" title="Championnat du Niger de football 2019-2020">Niger</a></li>\n<li>Nigeria\n<ul><li><a href="/wiki/Championnat_du_Nigeria_de_football_2019" title="Championnat du Nigeria de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Nigeria_de_football_2019-2020" title="Championnat du Nigeria de football 2019-2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Ouganda_de_football_2019-2020" title="Championnat d&#39;Ouganda de football 2019-2020">Ouganda</a></li>\n<li><a href="/wiki/Championnat_du_Rwanda_de_football_2019-2020" title="Championnat du Rwanda de football 2019-2020">Rwanda</a></li>\n<li>Sao Tom\xc3\xa9-et-Principe\n<ul><li><a href="/wiki/Championnat_de_Sao_Tom%C3%A9-et-Principe_de_football_2019" title="Championnat de Sao Tom\xc3\xa9-et-Principe de football 2019">2019</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">2020</span></li></ul></li>\n<li><a href="/wiki/Championnat_du_S%C3%A9n%C3%A9gal_de_football_2019-2020" title="Championnat du S\xc3\xa9n\xc3\xa9gal de football 2019-2020">S\xc3\xa9n\xc3\xa9gal</a></li>\n<li><a href="/wiki/Championnat_des_Seychelles_de_football_2019-2020" title="Championnat des Seychelles de football 2019-2020">Seychelles</a></li>\n<li>Sierra Leone\n<ul><li><a href="/wiki/Championnat_de_Sierra_Leone_de_football_2019" title="Championnat de Sierra Leone de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Sierra_Leone_de_football_2019-2020" title="Championnat de Sierra Leone de football 2019-2020">2019-2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Somalie_de_football_2019-2020" title="Championnat de Somalie de football 2019-2020">Somalie</a></li>\n<li><a href="/wiki/Championnat_du_Soudan_de_football_2019-2020" title="Championnat du Soudan de football 2019-2020">Soudan</a></li>\n<li><a href="/wiki/Championnat_de_Tanzanie_de_football_2019-2020" title="Championnat de Tanzanie de football 2019-2020">Tanzanie</a></li>\n<li><a href="/wiki/Championnat_du_Togo_de_football_2019-2020" title="Championnat du Togo de football 2019-2020">Togo</a></li>\n<li><a href="/wiki/Championnat_de_Tunisie_de_football_2019-2020" title="Championnat de Tunisie de football 2019-2020">Tunisie</a></li>\n<li>Zambie\n<ul><li><a href="/wiki/Championnat_de_Zambie_de_football_2019" title="Championnat de Zambie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Zambie_de_football_2019-2020" title="Championnat de Zambie de football 2019-2020">2020</a></li></ul></li>\n<li>Zimbabwe\n<ul><li><a href="/wiki/Championnat_du_Zimbabwe_de_football_2019" title="Championnat du Zimbabwe de football 2019">2019</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">2020</span></li></ul></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">F\xc3\xa9minin</th>\n<td class="navbox-list navbox-even" style=";"><a href="/w/index.php?title=Championnat_d%27Alg%C3%A9rie_f%C3%A9minin_de_football_2019-2020&amp;action=edit&amp;redlink=1" class="new" title="Championnat d&#39;Alg\xc3\xa9rie f\xc3\xa9minin de football 2019-2020 (page inexistante)">Alg\xc3\xa9rie</a></td>\n</tr>                            \n\n</tbody></table></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3;"><a href="/wiki/Conf%C3%A9d%C3%A9ration_de_football_d%27Am%C3%A9rique_du_Nord,_d%27Am%C3%A9rique_centrale_et_des_Cara%C3%AFbes" title="Conf\xc3\xa9d\xc3\xa9ration de football d&#39;Am\xc3\xa9rique du Nord, d&#39;Am\xc3\xa9rique centrale et des Cara\xc3\xafbes">CONCACAF</a></th>\n<td class="navbox-list navbox-even" style="background:#E6F2E6;"><table class="navbox-subgroup" style="">\n<tbody><tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">Masculin</th>\n<td class="navbox-list" style=";"><div class="liste-horizontale">\n<ul><li>Am\xc3\xa9rique du Nord\n<ul><li><a href="/wiki/Major_League_Soccer_2019" title="Major League Soccer 2019">2019</a></li>\n<li><a href="/wiki/Major_League_Soccer_2020" title="Major League Soccer 2020">2020</a></li></ul></li>\n<li>Anguilla\n<ul><li><a href="/wiki/Championnat_d%27Anguilla_de_football_2020" title="Championnat d&#39;Anguilla de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Antigua-et-Barbuda_de_football_2019-2020" title="Championnat d&#39;Antigua-et-Barbuda de football 2019-2020">Antigua-et-Barbuda</a></li>\n<li><a href="/wiki/Championnat_d%27Aruba_de_football_2019-2020" title="Championnat d&#39;Aruba de football 2019-2020">Aruba</a></li>\n<li>Bahamas\n<ul><li><a href="/wiki/Championnat_des_Bahamas_de_football_2020" title="Championnat des Bahamas de football 2020">2020</a></li></ul></li>\n<li>Barbade\n<ul><li><a href="/wiki/Championnat_de_la_Barbade_de_football_2020" title="Championnat de la Barbade de football 2020">2020</a></li></ul></li>\n<li>Belize\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Belize_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Belize de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Belize_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Belize de football 2020">C. 2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_Bermudes_de_football_2019-2020" title="Championnat des Bermudes de football 2019-2020">Bermudes</a></li>\n<li><a href="/wiki/Championnat_de_Bonaire_de_football_2019-2020" title="Championnat de Bonaire de football 2019-2020">Bonaire</a></li>\n<li>Canada\n<ul><li><a href="/wiki/Premi%C3%A8re_ligue_canadienne_2019" title="Premi\xc3\xa8re ligue canadienne 2019">2019</a></li>\n<li><a href="/wiki/Premi%C3%A8re_ligue_canadienne_2020" title="Premi\xc3\xa8re ligue canadienne 2020">2020</a></li></ul></li>\n<li>Costa Rica\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Costa_Rica_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Costa Rica de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Costa_Rica_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Costa Rica de football 2020">C. 2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Cuba_de_football_2019-2020" title="Championnat de Cuba de football 2019-2020">Cuba</a></li>\n<li><a href="/wiki/Championnat_de_Cura%C3%A7ao_de_football_2019-2020" title="Championnat de Cura\xc3\xa7ao de football 2019-2020">Cura\xc3\xa7ao</a></li>\n<li>R\xc3\xa9publique dominicaine\n<ul><li><a href="/wiki/Championnat_de_R%C3%A9publique_dominicaine_de_football_2019" title="Championnat de R\xc3\xa9publique dominicaine de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_R%C3%A9publique_dominicaine_de_football_2020" title="Championnat de R\xc3\xa9publique dominicaine de football 2020">2020</a></li></ul></li>\n<li>Dominique\n<ul><li><a href="/wiki/Championnat_de_Dominique_de_football_2020" title="Championnat de Dominique de football 2020">2020</a></li></ul></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">Grenade</span></li>\n<li><a href="/wiki/Championnat_de_Guadeloupe_de_football_2019-2020" title="Championnat de Guadeloupe de football 2019-2020">Guadeloupe</a></li>\n<li>Guatemala\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Guatemala_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Guatemala de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Guatemala_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Guatemala de football 2020">C. 2020</a></li></ul></li>\n<li>Guyana\n<ul><li><a href="/wiki/Championnat_du_Guyana_de_football_2019" title="Championnat du Guyana de football 2019">2019</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">2020</span></li></ul></li>\n<li><a href="/wiki/Championnat_de_Guyane_de_football_2019-2020" title="Championnat de Guyane de football 2019-2020">Guyane</a></li>\n<li>Ha\xc3\xafti\n<ul><li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_d%27Ha%C3%AFti_de_football_2019" title="Tournoi de cl\xc3\xb4ture du championnat d&#39;Ha\xc3\xafti de football 2019">Cl\xc3\xb4. 2019</a></li>\n<li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_d%27Ha%C3%AFti_de_football_2020" title="Tournoi d&#39;ouverture du championnat d&#39;Ha\xc3\xafti de football 2020">Ouv. 2020</a></li></ul></li>\n<li>Honduras\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Honduras_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Honduras de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Honduras_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Honduras de football 2020">C. 2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_%C3%AEles_Ca%C3%AFmans_de_football_2019-2020" title="Championnat des \xc3\xaeles Ca\xc3\xafmans de football 2019-2020">\xc3\xaeles Ca\xc3\xafmans</a></li>\n<li><a href="/wiki/Championnat_des_%C3%8Eles_Turques-et-Ca%C3%AFques_de_football_2019-2020" title="Championnat des \xc3\x8eles Turques-et-Ca\xc3\xafques de football 2019-2020">\xc3\x8eles Turques-et-Ca\xc3\xafques</a></li>\n<li><a href="/wiki/Championnat_des_%C3%AEles_Vierges_britanniques_de_football_2019-2020" title="Championnat des \xc3\xaeles Vierges britanniques de football 2019-2020">\xc3\xaeles Vierges britanniques</a></li>\n<li><a href="/wiki/Championnat_des_%C3%AEles_Vierges_des_%C3%89tats-Unis_de_football_2019-2020" title="Championnat des \xc3\xaeles Vierges des \xc3\x89tats-Unis de football 2019-2020">\xc3\xaeles Vierges des \xc3\x89tats-Unis</a></li>\n<li><a href="/wiki/Championnat_de_Jama%C3%AFque_de_football_2019-2020" title="Championnat de Jama\xc3\xafque de football 2019-2020">Jama\xc3\xafque</a></li>\n<li><a href="/wiki/Championnat_de_la_Martinique_de_football_2019-2020" title="Championnat de la Martinique de football 2019-2020">Martinique</a></li>\n<li>Mexique\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Mexique_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Mexique de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Mexique_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Mexique de football 2020">C. 2020</a></li></ul></li>\n<li>Nicaragua\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Nicaragua_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Nicaragua de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Nicaragua_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Nicaragua de football 2020">C. 2020</a></li></ul></li>\n<li>Panam\xc3\xa1\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Panama_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Panama de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Panama_de_football_2020" title="Tournoi d&#39;ouverture du championnat du Panama de football 2020">A. 2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Porto_Rico_de_football_2019-2020" title="Championnat de Porto Rico de football 2019-2020">Porto Rico</a></li>\n<li><a href="/wiki/Championnat_de_Saint-Christophe-et-Ni%C3%A9v%C3%A8s_de_football_2019-2020" title="Championnat de Saint-Christophe-et-Ni\xc3\xa9v\xc3\xa8s de football 2019-2020">Saint-Christophe-et-Ni\xc3\xa9v\xc3\xa8s</a></li>\n<li><a href="/wiki/Championnat_de_Saint-Vincent-et-les-Grenadines_de_football_2019-2020" title="Championnat de Saint-Vincent-et-les-Grenadines de football 2019-2020">Saint-Vincent-et-les-Grenadines</a></li>\n<li>Sainte-Lucie\n<ul><li><a href="/wiki/Championnat_de_Sainte-Lucie_de_football_2020" title="Championnat de Sainte-Lucie de football 2020">2020</a></li></ul></li>\n<li>Salvador\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Salvador_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Salvador de football 2019">A. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Salvador_de_football_2020" title="Tournoi de cl\xc3\xb4ture du championnat du Salvador de football 2020">C. 2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Suriname_de_football_2019-2020" title="Championnat du Suriname de football 2019-2020">Suriname</a></li>\n<li><a href="/wiki/Championnat_de_Trinit%C3%A9-et-Tobago_de_football_2019-2020" title="Championnat de Trinit\xc3\xa9-et-Tobago de football 2019-2020">Trinit\xc3\xa9-et-Tobago</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">F\xc3\xa9minin</th>\n<td class="navbox-list navbox-even" style=";">\xc3\x89tats-Unis (<a href="/wiki/Championnat_des_%C3%89tats-Unis_f%C3%A9minin_de_soccer_2019" class="mw-redirect" title="Championnat des \xc3\x89tats-Unis f\xc3\xa9minin de soccer 2019">2019</a>, <a href="/wiki/National_Women%27s_Soccer_League_2020" title="National Women&#39;s Soccer League 2020">2020</a>)</td>\n</tr>                            \n\n</tbody></table></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3;"><a href="/wiki/Conf%C3%A9d%C3%A9ration_sud-am%C3%A9ricaine_de_football" title="Conf\xc3\xa9d\xc3\xa9ration sud-am\xc3\xa9ricaine de football">CONMEBOL</a></th>\n<td class="navbox-list" style="background:#E6F2E6;"><table class="navbox-subgroup" style="">\n<tbody><tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">Masculin</th>\n<td class="navbox-list" style=";"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_d%27Argentine_de_football_2019-2020" title="Championnat d&#39;Argentine de football 2019-2020">Argentine</a></li>\n<li>Bolivie\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_de_Bolivie_de_football_2019" title="Tournoi d&#39;ouverture du championnat de Bolivie de football 2019">Ap. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_de_Bolivie_de_football_2019" title="Tournoi de cl\xc3\xb4ture du championnat de Bolivie de football 2019">Cl. 2019</a></li>\n<li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_de_Bolivie_de_football_2020" title="Tournoi d&#39;ouverture du championnat de Bolivie de football 2020">Ap. 2020</a></li></ul></li>\n<li>Br\xc3\xa9sil\n<ul><li><a href="/wiki/Championnat_du_Br%C3%A9sil_de_football_2019" title="Championnat du Br\xc3\xa9sil de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Br%C3%A9sil_de_football_2020" title="Championnat du Br\xc3\xa9sil de football 2020">2020</a></li></ul></li>\n<li>Chili\n<ul><li><a href="/wiki/Championnat_du_Chili_de_football_2019" title="Championnat du Chili de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Chili_de_football_2020" title="Championnat du Chili de football 2020">2020</a></li></ul></li>\n<li>Colombie\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_de_Colombie_de_football_2019" title="Tournoi d&#39;ouverture du championnat de Colombie de football 2019">Ap. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_de_Colombie_de_football_2019" title="Tournoi de cl\xc3\xb4ture du championnat de Colombie de football 2019">Cl. 2019</a></li>\n<li><a href="/wiki/Championnat_de_Colombie_de_football_2020" title="Championnat de Colombie de football 2020">2020</a></li></ul></li>\n<li>\xc3\x89quateur\n<ul><li><a href="/wiki/Championnat_d%27%C3%89quateur_de_football_2019" title="Championnat d&#39;\xc3\x89quateur de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27%C3%89quateur_de_football_2020" title="Championnat d&#39;\xc3\x89quateur de football 2020">2020</a></li></ul></li>\n<li>Paraguay\n<ul><li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Paraguay_de_football_2019" title="Tournoi d&#39;ouverture du championnat du Paraguay de football 2019">Ap. 2019</a></li>\n<li><a href="/wiki/Tournoi_de_cl%C3%B4ture_du_championnat_du_Paraguay_de_football_2019" title="Tournoi de cl\xc3\xb4ture du championnat du Paraguay de football 2019">Cl. 2019</a></li>\n<li><a href="/wiki/Tournoi_d%27ouverture_du_championnat_du_Paraguay_de_football_2020" title="Tournoi d&#39;ouverture du championnat du Paraguay de football 2020">Ap. 2020</a></li></ul></li>\n<li>P\xc3\xa9rou\n<ul><li><a href="/wiki/Championnat_du_P%C3%A9rou_de_football_2019" title="Championnat du P\xc3\xa9rou de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_P%C3%A9rou_de_football_2020" title="Championnat du P\xc3\xa9rou de football 2020">2020</a></li></ul></li>\n<li>Uruguay\n<ul><li><a href="/wiki/Championnat_d%27Uruguay_de_football_2019" title="Championnat d&#39;Uruguay de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Uruguay_de_football_2020" title="Championnat d&#39;Uruguay de football 2020">2020</a></li></ul></li>\n<li>Venezuela\n<ul><li><a href="/wiki/Championnat_du_Venezuela_de_football_2019" title="Championnat du Venezuela de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Venezuela_de_football_2020" title="Championnat du Venezuela de football 2020">2020</a></li></ul></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">F\xc3\xa9minin</th>\n<td class="navbox-list navbox-even" style=";"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_d%27Argentine_f%C3%A9minin_de_football_2019-2020" title="Championnat d&#39;Argentine f\xc3\xa9minin de football 2019-2020">Argentine</a></li>\n<li>Br\xc3\xa9sil\n<ul><li><a href="/wiki/Championnat_du_Br%C3%A9sil_f%C3%A9minin_de_football_2019" title="Championnat du Br\xc3\xa9sil f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Br%C3%A9sil_f%C3%A9minin_de_football_2020" title="Championnat du Br\xc3\xa9sil f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li>Colombie\n<ul><li><a href="/w/index.php?title=Championnat_de_Colombie_f%C3%A9minin_de_football_2019&amp;action=edit&amp;redlink=1" class="new" title="Championnat de Colombie f\xc3\xa9minin de football 2019 (page inexistante)">2019</a></li>\n<li><a href="/wiki/Championnat_de_Colombie_f%C3%A9minin_de_football_2020" title="Championnat de Colombie f\xc3\xa9minin de football 2020">2020</a></li></ul></li></ul>\n</div></td>\n</tr>                            \n\n</tbody></table></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3;"><a href="/wiki/Conf%C3%A9d%C3%A9ration_asiatique_de_football" title="Conf\xc3\xa9d\xc3\xa9ration asiatique de football">AFC</a></th>\n<td class="navbox-list navbox-even" style="background:#E6F2E6;"><table class="navbox-subgroup" style="">\n<tbody><tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">Masculin</th>\n<td class="navbox-list" style=";"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_d%27Arabie_saoudite_de_football_2019-2020" title="Championnat d&#39;Arabie saoudite de football 2019-2020">Arabie saoudite</a></li>\n<li><a href="/wiki/Championnat_d%27Australie_de_football_2019-2020" title="Championnat d&#39;Australie de football 2019-2020">Australie</a></li>\n<li><a href="/wiki/Championnat_de_Bahre%C3%AFn_de_football_2019-2020" title="Championnat de Bahre\xc3\xafn de football 2019-2020">Bahre\xc3\xafn</a></li>\n<li>Bangladesh\n<ul><li><a href="/wiki/Championnat_du_Bangladesh_de_football_2019" title="Championnat du Bangladesh de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Bangladesh_de_football_2020" title="Championnat du Bangladesh de football 2020">2020</a></li></ul></li>\n<li>Bhoutan\n<ul><li><a href="/wiki/Championnat_du_Bhoutan_de_football_2019" title="Championnat du Bhoutan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Bhoutan_de_football_2020" title="Championnat du Bhoutan de football 2020">2020</a></li></ul></li>\n<li>Birmanie\n<ul><li><a href="/wiki/Championnat_de_Birmanie_de_football_2019" title="Championnat de Birmanie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Birmanie_de_football_2020" title="Championnat de Birmanie de football 2020">2020</a></li></ul></li>\n<li>Cambodge\n<ul><li><a href="/wiki/Championnat_du_Cambodge_de_football_2019" title="Championnat du Cambodge de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Cambodge_de_football_2020" title="Championnat du Cambodge de football 2020">2020</a></li></ul></li>\n<li>Chine\n<ul><li><a href="/wiki/Championnat_de_Chine_de_football_2019" title="Championnat de Chine de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Chine_de_football_2020" title="Championnat de Chine de football 2020">2020</a></li></ul></li>\n<li>Cor\xc3\xa9e du Sud\n<ul><li><a href="/wiki/Championnat_de_Cor%C3%A9e_du_Sud_de_football_2019" title="Championnat de Cor\xc3\xa9e du Sud de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Cor%C3%A9e_du_Sud_de_football_2020" title="Championnat de Cor\xc3\xa9e du Sud de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_%C3%89mirats_arabes_unis_de_football_2019-2020" title="Championnat des \xc3\x89mirats arabes unis de football 2019-2020">\xc3\x89mirats arabes unis</a></li>\n<li><a href="/wiki/Championnat_de_Hong_Kong_de_football_2019-2020" title="Championnat de Hong Kong de football 2019-2020">Hong Kong</a></li>\n<li>Inde\n<ul><li><a href="/wiki/Championnat_d%27Inde_de_football_2019-2020" title="Championnat d&#39;Inde de football 2019-2020">I-League</a></li>\n<li><a href="/wiki/Indian_Super_League_2019-2020" title="Indian Super League 2019-2020">ISL</a></li></ul></li>\n<li>Indon\xc3\xa9sie\n<ul><li><a href="/wiki/Championnat_d%27Indon%C3%A9sie_de_football_2019" title="Championnat d&#39;Indon\xc3\xa9sie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Indon%C3%A9sie_de_football_2020" title="Championnat d&#39;Indon\xc3\xa9sie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Irak_de_football_2019-2020" title="Championnat d&#39;Irak de football 2019-2020">Irak</a></li>\n<li><a href="/wiki/Championnat_d%27Iran_de_football_2019-2020" title="Championnat d&#39;Iran de football 2019-2020">Iran</a></li>\n<li>Japon\n<ul><li><a href="/wiki/Championnat_du_Japon_de_football_2019" title="Championnat du Japon de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Japon_de_football_2020" title="Championnat du Japon de football 2020">2020</a></li></ul></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">Jordanie</span></li>\n<li>Kirghizistan\n<ul><li><a href="/wiki/Championnat_du_Kirghizistan_de_football_2019" title="Championnat du Kirghizistan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Kirghizistan_de_football_2020" title="Championnat du Kirghizistan de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Kowe%C3%AFt_de_football_2019-2020" title="Championnat du Kowe\xc3\xaft de football 2019-2020">Kowe\xc3\xaft</a></li>\n<li>Laos\n<ul><li><a href="/wiki/Championnat_du_Laos_de_football_2019" title="Championnat du Laos de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Laos_de_football_2020" title="Championnat du Laos de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Liban_de_football_2019-2020" title="Championnat du Liban de football 2019-2020">Liban</a></li>\n<li>Macao\n<ul><li><a href="/wiki/Championnat_de_Macao_de_football_2019" title="Championnat de Macao de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Macao_de_football_2020" title="Championnat de Macao de football 2020">2020</a></li></ul></li>\n<li>Malaisie\n<ul><li><a href="/wiki/Championnat_de_Malaisie_de_football_2019" title="Championnat de Malaisie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Malaisie_de_football_2020" title="Championnat de Malaisie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_Maldives_de_football_2019-2020" title="Championnat des Maldives de football 2019-2020">Maldives</a></li>\n<li>Mongolie\n<ul><li><a href="/wiki/Championnat_de_Mongolie_de_football_2019" title="Championnat de Mongolie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Mongolie_de_football_2020" title="Championnat de Mongolie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_N%C3%A9pal_de_football_2019-2020" title="Championnat du N\xc3\xa9pal de football 2019-2020">N\xc3\xa9pal</a></li>\n<li><a href="/wiki/Championnat_d%27Oman_de_football_2019-2020" title="Championnat d&#39;Oman de football 2019-2020">Oman</a></li>\n<li>Ouzb\xc3\xa9kistan\n<ul><li><a href="/wiki/Championnat_d%27Ouzb%C3%A9kistan_de_football_2019" title="Championnat d&#39;Ouzb\xc3\xa9kistan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Ouzb%C3%A9kistan_de_football_2020" title="Championnat d&#39;Ouzb\xc3\xa9kistan de football 2020">2020</a></li></ul></li>\n<li>Philippines\n<ul><li><a href="/wiki/Championnat_des_Philippines_de_football_2019" title="Championnat des Philippines de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_des_Philippines_de_football_2020" title="Championnat des Philippines de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Qatar_de_football_2019-2020" title="Championnat du Qatar de football 2019-2020">Qatar</a></li>\n<li>Singapour\n<ul><li><a href="/wiki/Championnat_de_Singapour_de_football_2019" title="Championnat de Singapour de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Singapour_de_football_2020" title="Championnat de Singapour de football 2020">2020</a></li></ul></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">Sri Lanka</span></li>\n<li><a href="/wiki/Championnat_de_Syrie_de_football_2019-2020" title="Championnat de Syrie de football 2019-2020">Syrie</a></li>\n<li>Tadjikistan\n<ul><li><a href="/wiki/Championnat_du_Tadjikistan_de_football_2019" title="Championnat du Tadjikistan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Tadjikistan_de_football_2020" title="Championnat du Tadjikistan de football 2020">2020</a></li></ul></li>\n<li>Ta\xc3\xafwan\n<ul><li><a href="/wiki/Championnat_de_Ta%C3%AFwan_de_football_2019" title="Championnat de Ta\xc3\xafwan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Ta%C3%AFwan_de_football_2020" title="Championnat de Ta\xc3\xafwan de football 2020">2020</a></li></ul></li>\n<li>Tha\xc3\xaflande\n<ul><li><a href="/wiki/Championnat_de_Tha%C3%AFlande_de_football_2019" title="Championnat de Tha\xc3\xaflande de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Tha%C3%AFlande_de_football_2020-2021" title="Championnat de Tha\xc3\xaflande de football 2020-2021">2020-2021</a></li></ul></li>\n<li>Timor oriental\n<ul><li><a href="/wiki/Championnat_du_Timor_oriental_de_football_2019" title="Championnat du Timor oriental de football 2019">2019</a></li></ul></li>\n<li>Turkm\xc3\xa9nistan\n<ul><li><a href="/wiki/Championnat_du_Turkm%C3%A9nistan_de_football_2019" title="Championnat du Turkm\xc3\xa9nistan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Turkm%C3%A9nistan_de_football_2020" title="Championnat du Turkm\xc3\xa9nistan de football 2020">2020</a></li></ul></li>\n<li>Vi\xc3\xaat Nam\n<ul><li><a href="/wiki/Championnat_du_Vi%C3%AAt_Nam_de_football_2019" title="Championnat du Vi\xc3\xaat Nam de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Vi%C3%AAt_Nam_de_football_2020" title="Championnat du Vi\xc3\xaat Nam de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Y%C3%A9men_de_football_2019-2020" title="Championnat du Y\xc3\xa9men de football 2019-2020">Y\xc3\xa9men</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">F\xc3\xa9minin</th>\n<td class="navbox-list navbox-even" style=";"><div class="liste-horizontale">\n<ul><li>Cor\xc3\xa9e du Sud\n<ul><li><a href="/w/index.php?title=Championnat_de_Cor%C3%A9e_du_Sud_f%C3%A9minin_de_football_2019&amp;action=edit&amp;redlink=1" class="new" title="Championnat de Cor\xc3\xa9e du Sud f\xc3\xa9minin de football 2019 (page inexistante)">2019</a></li>\n<li><a href="/wiki/Championnat_de_Cor%C3%A9e_du_Sud_f%C3%A9minin_de_football_2020" title="Championnat de Cor\xc3\xa9e du Sud f\xc3\xa9minin de football 2020">2020</a></li></ul></li></ul>\n</div></td>\n</tr>                            \n\n</tbody></table></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3;"><a href="/wiki/Union_des_associations_europ%C3%A9ennes_de_football" title="Union des associations europ\xc3\xa9ennes de football">UEFA</a></th>\n<td class="navbox-list" style="background:#E6F2E6;"><table class="navbox-subgroup" style="">\n<tbody><tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">Masculin</th>\n<td class="navbox-list" style=";"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_d%27Albanie_de_football_2019-2020" title="Championnat d&#39;Albanie de football 2019-2020">Albanie</a></li>\n<li><a href="/wiki/Championnat_d%27Allemagne_de_football_2019-2020" title="Championnat d&#39;Allemagne de football 2019-2020">Allemagne</a></li>\n<li><a href="/wiki/Championnat_d%27Andorre_de_football_2019-2020" title="Championnat d&#39;Andorre de football 2019-2020">Andorre</a></li>\n<li><a href="/wiki/Championnat_d%27Angleterre_de_football_2019-2020" title="Championnat d&#39;Angleterre de football 2019-2020">Angleterre</a></li>\n<li><a href="/wiki/Championnat_d%27Arm%C3%A9nie_de_football_2019-2020" title="Championnat d&#39;Arm\xc3\xa9nie de football 2019-2020">Arm\xc3\xa9nie</a></li>\n<li><a href="/wiki/Championnat_d%27Autriche_de_football_2019-2020" title="Championnat d&#39;Autriche de football 2019-2020">Autriche</a></li>\n<li><a href="/wiki/Championnat_d%27Azerba%C3%AFdjan_de_football_2019-2020" title="Championnat d&#39;Azerba\xc3\xafdjan de football 2019-2020">Azerba\xc3\xafdjan</a></li>\n<li><a href="/wiki/Championnat_de_Belgique_de_football_2019-2020" title="Championnat de Belgique de football 2019-2020">Belgique</a></li>\n<li>Bi\xc3\xa9lorussie\n<ul><li><a href="/wiki/Championnat_de_Bi%C3%A9lorussie_de_football_2019" title="Championnat de Bi\xc3\xa9lorussie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Bi%C3%A9lorussie_de_football_2020" title="Championnat de Bi\xc3\xa9lorussie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Bosnie-Herz%C3%A9govine_de_football_2019-2020" title="Championnat de Bosnie-Herz\xc3\xa9govine de football 2019-2020">Bosnie-Herz\xc3\xa9govine</a></li>\n<li><a href="/wiki/Championnat_de_Bulgarie_de_football_2019-2020" title="Championnat de Bulgarie de football 2019-2020">Bulgarie</a></li>\n<li><a href="/wiki/Championnat_de_Chypre_de_football_2019-2020" title="Championnat de Chypre de football 2019-2020">Chypre</a></li>\n<li><a href="/wiki/Championnat_de_Croatie_de_football_2019-2020" title="Championnat de Croatie de football 2019-2020">Croatie</a></li>\n<li><a href="/wiki/Championnat_du_Danemark_de_football_2019-2020" title="Championnat du Danemark de football 2019-2020">Danemark</a></li>\n<li><a href="/wiki/Championnat_d%27%C3%89cosse_de_football_2019-2020" title="Championnat d&#39;\xc3\x89cosse de football 2019-2020">\xc3\x89cosse</a></li>\n<li><a href="/wiki/Championnat_d%27Espagne_de_football_2019-2020" title="Championnat d&#39;Espagne de football 2019-2020">Espagne</a></li>\n<li>Estonie\n<ul><li><a href="/wiki/Championnat_d%27Estonie_de_football_2019" title="Championnat d&#39;Estonie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Estonie_de_football_2020" title="Championnat d&#39;Estonie de football 2020">2020</a></li></ul></li>\n<li>Finlande\n<ul><li><a href="/wiki/Championnat_de_Finlande_de_football_2019" title="Championnat de Finlande de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Finlande_de_football_2020" title="Championnat de Finlande de football 2020">2020</a></li></ul></li>\n<li><a class="mw-selflink selflink">France</a></li>\n<li>G\xc3\xa9orgie\n<ul><li><a href="/wiki/Championnat_de_G%C3%A9orgie_de_football_2019" title="Championnat de G\xc3\xa9orgie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_G%C3%A9orgie_de_football_2020" title="Championnat de G\xc3\xa9orgie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Gibraltar_de_football_2019-2020" title="Championnat de Gibraltar de football 2019-2020">Gibraltar</a></li>\n<li><a href="/wiki/Championnat_de_Gr%C3%A8ce_de_football_2019-2020" title="Championnat de Gr\xc3\xa8ce de football 2019-2020">Gr\xc3\xa8ce</a></li>\n<li><a href="/wiki/Championnat_de_Hongrie_de_football_2019-2020" title="Championnat de Hongrie de football 2019-2020">Hongrie</a></li>\n<li>\xc3\x8eles F\xc3\xa9ro\xc3\xa9\n<ul><li><a href="/wiki/Championnat_des_%C3%AEles_F%C3%A9ro%C3%A9_de_football_2019" title="Championnat des \xc3\xaeles F\xc3\xa9ro\xc3\xa9 de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_des_%C3%AEles_F%C3%A9ro%C3%A9_de_football_2020" title="Championnat des \xc3\xaeles F\xc3\xa9ro\xc3\xa9 de football 2020">2020</a></li></ul></li>\n<li>Irlande\n<ul><li><a href="/wiki/Championnat_d%27Irlande_de_football_2019" title="Championnat d&#39;Irlande de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Irlande_de_football_2020" title="Championnat d&#39;Irlande de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Irlande_du_Nord_de_football_2019-2020" title="Championnat d&#39;Irlande du Nord de football 2019-2020">Irlande du Nord</a></li>\n<li>Islande\n<ul><li><a href="/wiki/Championnat_d%27Islande_de_football_2019" title="Championnat d&#39;Islande de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Islande_de_football_2020" title="Championnat d&#39;Islande de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Isra%C3%ABl_de_football_2019-2020" title="Championnat d&#39;Isra\xc3\xabl de football 2019-2020">Isra\xc3\xabl</a></li>\n<li><a href="/wiki/Championnat_d%27Italie_de_football_2019-2020" title="Championnat d&#39;Italie de football 2019-2020">Italie</a></li>\n<li>Kazakhstan\n<ul><li><a href="/wiki/Championnat_du_Kazakhstan_de_football_2019" title="Championnat du Kazakhstan de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Kazakhstan_de_football_2020" title="Championnat du Kazakhstan de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Kosovo_de_football_2019-2020" title="Championnat du Kosovo de football 2019-2020">Kosovo</a></li>\n<li>Lettonie\n<ul><li><a href="/wiki/Championnat_de_Lettonie_de_football_2019" title="Championnat de Lettonie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Lettonie_de_football_2020" title="Championnat de Lettonie de football 2020">2020</a></li></ul></li>\n<li>Lituanie\n<ul><li><a href="/wiki/Championnat_de_Lituanie_de_football_2019" title="Championnat de Lituanie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Lituanie_de_football_2020" title="Championnat de Lituanie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Luxembourg_de_football_2019-2020" title="Championnat du Luxembourg de football 2019-2020">Luxembourg</a></li>\n<li><a href="/wiki/Championnat_de_Mac%C3%A9doine_du_Nord_de_football_2019-2020" title="Championnat de Mac\xc3\xa9doine du Nord de football 2019-2020">Mac\xc3\xa9doine du Nord</a></li>\n<li><a href="/wiki/Championnat_de_Malte_de_football_2019-2020" title="Championnat de Malte de football 2019-2020">Malte</a></li>\n<li>Moldavie\n<ul><li><a href="/wiki/Championnat_de_Moldavie_de_football_2019" title="Championnat de Moldavie de football 2019">2019</a></li></ul></li>\n<li><a href="/wiki/Championnat_du_Mont%C3%A9n%C3%A9gro_de_football_2019-2020" title="Championnat du Mont\xc3\xa9n\xc3\xa9gro de football 2019-2020">Mont\xc3\xa9n\xc3\xa9gro</a></li>\n<li>Norv\xc3\xa8ge\n<ul><li><a href="/wiki/Championnat_de_Norv%C3%A8ge_de_football_2019" title="Championnat de Norv\xc3\xa8ge de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Norv%C3%A8ge_de_football_2020" title="Championnat de Norv\xc3\xa8ge de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_Pays-Bas_de_football_2019-2020" title="Championnat des Pays-Bas de football 2019-2020">Pays-Bas</a></li>\n<li><a href="/wiki/Championnat_du_pays_de_Galles_de_football_2019-2020" title="Championnat du pays de Galles de football 2019-2020">Pays de Galles</a></li>\n<li><a href="/wiki/Championnat_de_Pologne_de_football_2019-2020" title="Championnat de Pologne de football 2019-2020">Pologne</a></li>\n<li><a href="/wiki/Championnat_du_Portugal_de_football_2019-2020" title="Championnat du Portugal de football 2019-2020">Portugal</a></li>\n<li><a href="/wiki/Championnat_de_Roumanie_de_football_2019-2020" title="Championnat de Roumanie de football 2019-2020">Roumanie</a></li>\n<li><a href="/wiki/Championnat_de_Russie_de_football_2019-2020" title="Championnat de Russie de football 2019-2020">Russie</a></li>\n<li><a href="/wiki/Championnat_de_Saint-Marin_de_football_2019-2020" title="Championnat de Saint-Marin de football 2019-2020">Saint-Marin</a></li>\n<li><a href="/wiki/Championnat_de_Serbie_de_football_2019-2020" title="Championnat de Serbie de football 2019-2020">Serbie</a></li>\n<li><a href="/wiki/Championnat_de_Slovaquie_de_football_2019-2020" title="Championnat de Slovaquie de football 2019-2020">Slovaquie</a></li>\n<li><a href="/wiki/Championnat_de_Slov%C3%A9nie_de_football_2019-2020" title="Championnat de Slov\xc3\xa9nie de football 2019-2020">Slov\xc3\xa9nie</a></li>\n<li>Su\xc3\xa8de\n<ul><li><a href="/wiki/Championnat_de_Su%C3%A8de_de_football_2019" title="Championnat de Su\xc3\xa8de de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Su%C3%A8de_de_football_2020" title="Championnat de Su\xc3\xa8de de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Suisse_de_football_2019-2020" title="Championnat de Suisse de football 2019-2020">Suisse</a></li>\n<li><a href="/wiki/Championnat_de_Tch%C3%A9quie_de_football_2019-2020" title="Championnat de Tch\xc3\xa9quie de football 2019-2020">Tch\xc3\xa9quie</a></li>\n<li><a href="/wiki/Championnat_de_Turquie_de_football_2019-2020" title="Championnat de Turquie de football 2019-2020">Turquie</a></li>\n<li><a href="/wiki/Championnat_d%27Ukraine_de_football_2019-2020" title="Championnat d&#39;Ukraine de football 2019-2020">Ukraine</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">F\xc3\xa9minin</th>\n<td class="navbox-list navbox-even" style=";"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_d%27Allemagne_f%C3%A9minin_de_football_2019-2020" title="Championnat d&#39;Allemagne f\xc3\xa9minin de football 2019-2020">Allemagne</a></li>\n<li><a href="/wiki/Championnat_d%27Angleterre_f%C3%A9minin_de_football_2019-2020" title="Championnat d&#39;Angleterre f\xc3\xa9minin de football 2019-2020">Angleterre</a></li>\n<li><a href="/wiki/Championnat_d%27Autriche_f%C3%A9minin_de_football_2019-2020" title="Championnat d&#39;Autriche f\xc3\xa9minin de football 2019-2020">Autriche</a></li>\n<li><a href="/wiki/Championnat_de_Belgique_f%C3%A9minin_de_football_2019-2020" title="Championnat de Belgique f\xc3\xa9minin de football 2019-2020">Belgique</a></li>\n<li>\xc3\x89cosse\n<ul><li><a href="/wiki/Championnat_d%27%C3%89cosse_f%C3%A9minin_de_football_2019" title="Championnat d&#39;\xc3\x89cosse f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27%C3%89cosse_f%C3%A9minin_de_football_2020" title="Championnat d&#39;\xc3\x89cosse f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Espagne_f%C3%A9minin_de_football_2019-2020" title="Championnat d&#39;Espagne f\xc3\xa9minin de football 2019-2020">Espagne</a></li>\n<li><a href="/wiki/Championnat_du_Danemark_f%C3%A9minin_de_football_2019-2020" title="Championnat du Danemark f\xc3\xa9minin de football 2019-2020">Danemark</a></li>\n<li><a href="/wiki/Championnat_de_France_f%C3%A9minin_de_football_2019-2020" title="Championnat de France f\xc3\xa9minin de football 2019-2020">France</a></li>\n<li>Irlande\n<ul><li><a href="/wiki/Championnat_d%27Irlande_f%C3%A9minin_de_football_2019" title="Championnat d&#39;Irlande f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Irlande_f%C3%A9minin_de_football_2020" title="Championnat d&#39;Irlande f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li>Irlande du Nord\n<ul><li><a href="/wiki/Championnat_d%27Irlande_du_Nord_f%C3%A9minin_de_football_2019" title="Championnat d&#39;Irlande du Nord f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_d%27Irlande_du_Nord_f%C3%A9minin_de_football_2020" title="Championnat d&#39;Irlande du Nord f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_d%27Italie_f%C3%A9minin_de_football_2019-2020" title="Championnat d&#39;Italie f\xc3\xa9minin de football 2019-2020">Italie</a></li>\n<li>Norv\xc3\xa8ge\n<ul><li><a href="/wiki/Championnat_de_Norv%C3%A8ge_f%C3%A9minin_de_football_2019" title="Championnat de Norv\xc3\xa8ge f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Norv%C3%A8ge_f%C3%A9minin_de_football_2020" title="Championnat de Norv\xc3\xa8ge f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_Pays-Bas_f%C3%A9minin_de_football_2019-2020" title="Championnat des Pays-Bas f\xc3\xa9minin de football 2019-2020">Pays-Bas</a></li>\n<li><a href="/wiki/Championnat_du_pays_de_Galles_f%C3%A9minin_de_football_2019-2020" title="Championnat du pays de Galles f\xc3\xa9minin de football 2019-2020">Pays de Galles</a></li>\n<li><a href="/wiki/Championnat_de_Pologne_f%C3%A9minin_de_football_2019-2020" title="Championnat de Pologne f\xc3\xa9minin de football 2019-2020">Pologne</a></li>\n<li><a href="/wiki/Championnat_du_Portugal_f%C3%A9minin_de_football_2019-2020" title="Championnat du Portugal f\xc3\xa9minin de football 2019-2020">Portugal</a></li>\n<li>Russie\n<ul><li><a href="/wiki/Championnat_de_Russie_f%C3%A9minin_de_football_2019" title="Championnat de Russie f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Russie_f%C3%A9minin_de_football_2020" title="Championnat de Russie f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li>Su\xc3\xa8de\n<ul><li><a href="/wiki/Championnat_de_Su%C3%A8de_f%C3%A9minin_de_football_2019" title="Championnat de Su\xc3\xa8de f\xc3\xa9minin de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Su%C3%A8de_f%C3%A9minin_de_football_2020" title="Championnat de Su\xc3\xa8de f\xc3\xa9minin de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Suisse_f%C3%A9minin_de_football_2019-2020" title="Championnat de Suisse f\xc3\xa9minin de football 2019-2020">Suisse</a></li></ul>\n</div></td>\n</tr>                            \n\n</tbody></table></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3;"><a href="/wiki/Conf%C3%A9d%C3%A9ration_du_football_d%27Oc%C3%A9anie" title="Conf\xc3\xa9d\xc3\xa9ration du football d&#39;Oc\xc3\xa9anie">OFC</a></th>\n<td class="navbox-list navbox-even" style="background:#E6F2E6;"><table class="navbox-subgroup" style="">\n<tbody><tr>\n<th class="navbox-group" style="background:#CCE6CC; width:50px;">Masculin</th>\n<td class="navbox-list" style=";"><div class="liste-horizontale">\n<ul><li>Fidji\n<ul><li><a href="/wiki/Championnat_des_Fidji_de_football_2019" title="Championnat des Fidji de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_des_Fidji_de_football_2020" title="Championnat des Fidji de football 2020">2020</a></li></ul></li>\n<li>\xc3\x8eles Cook\n<ul><li><a href="/wiki/Championnat_des_%C3%AEles_Cook_de_football_2019" title="Championnat des \xc3\xaeles Cook de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_des_%C3%AEles_Cook_de_football_2020" title="Championnat des \xc3\xaeles Cook de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_des_%C3%8Eles_Salomon_de_football_2019-2020" title="Championnat des \xc3\x8eles Salomon de football 2019-2020">\xc3\x8eles Salomon</a></li>\n<li>Nouvelle-Cal\xc3\xa9donie\n<ul><li><a href="/wiki/Championnat_de_Nouvelle-Cal%C3%A9donie_de_football_2019" title="Championnat de Nouvelle-Cal\xc3\xa9donie de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Nouvelle-Cal%C3%A9donie_de_football_2020" title="Championnat de Nouvelle-Cal\xc3\xa9donie de football 2020">2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Nouvelle-Z%C3%A9lande_de_football_2019-2020" title="Championnat de Nouvelle-Z\xc3\xa9lande de football 2019-2020">Nouvelle-Z\xc3\xa9lande</a></li>\n<li>Papouasie-Nouvelle-Guin\xc3\xa9e\n<ul><li><a href="/wiki/Championnat_de_Papouasie-Nouvelle-Guin%C3%A9e_de_football_2019" title="Championnat de Papouasie-Nouvelle-Guin\xc3\xa9e de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_de_Papouasie-Nouvelle-Guin%C3%A9e_de_football_2019-2020" title="Championnat de Papouasie-Nouvelle-Guin\xc3\xa9e de football 2019-2020">2019-2020</a></li></ul></li>\n<li><a href="/wiki/Championnat_de_Polyn%C3%A9sie_fran%C3%A7aise_de_football_2019-2020" title="Championnat de Polyn\xc3\xa9sie fran\xc3\xa7aise de football 2019-2020">Polyn\xc3\xa9sie fran\xc3\xa7aise</a></li>\n<li>Samoa\n<ul><li><a href="/wiki/Championnat_des_Samoa_de_football_2019" title="Championnat des Samoa de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_des_Samoa_de_football_2020" title="Championnat des Samoa de football 2020">2020</a></li></ul></li>\n<li>Vanuatu\n<ul><li><a href="/wiki/Championnat_du_Vanuatu_de_football_2019" title="Championnat du Vanuatu de football 2019">2019</a></li>\n<li><a href="/wiki/Championnat_du_Vanuatu_de_football_2020" title="Championnat du Vanuatu de football 2020">2020</a></li></ul></li></ul>\n</div></td>\n</tr>                             \n\n</tbody></table></td>\n</tr>                         </tbody></table>\n<table class="navbox collapsible noprint autocollapse" style="">\n<tbody><tr><th class="navbox-title" colspan="2" style="background:#99cc99;"><div style="float:left; width:6em; text-align:left"><div class="noprint plainlinks nowrap tnavbar" style="padding:0; font-size:xx-small; color:var(--color-emphasized, #000000);"><a href="/wiki/Mod%C3%A8le:Palette_Football_en_France_2019-2020" title="Mod\xc3\xa8le:Palette Football en France 2019-2020"><abbr class="abbr" title="Voir ce mod\xc3\xa8le.">v</abbr></a>&#160;\xc2\xb7 <a class="external text" href="https://fr.wikipedia.org/w/index.php?title=Mod%C3%A8le:Palette_Football_en_France_2019-2020&amp;action=edit"><abbr class="abbr" title="Modifier ce mod\xc3\xa8le. Merci de pr\xc3\xa9visualiser avant de sauvegarder.">m</abbr></a></div></div><div style="font-size:110%"><a href="/wiki/Football_en_France" title="Football en France">Football en France</a> en <a href="/wiki/2019_en_football" title="2019 en football">2019</a>-<a href="/wiki/2020_en_football" title="2020 en football">2020</a></div></th>\n</tr>  <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center"><a class="mw-selflink selflink">Ligue 1</a></th>\n<td class="navbox-list" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Saison_2019-2020_de_l%27Amiens_SC" title="Saison 2019-2020 de l&#39;Amiens SC">Amiens SC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_SCO_d%27Angers" title="Saison 2019-2020 du SCO d&#39;Angers">Angers SCO</a></li>\n<li><a href="/wiki/Saison_2019-2020_des_Girondins_de_Bordeaux" title="Saison 2019-2020 des Girondins de Bordeaux">Girondins de Bordeaux</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Stade_brestois_29" title="Saison 2019-2020 du Stade brestois 29">Stade brestois 29</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Dijon_FCO" title="Saison 2019-2020 du Dijon FCO">Dijon FCO</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_LOSC_Lille" title="Saison 2019-2020 du LOSC Lille">Lille OSC</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27Olympique_lyonnais" title="Saison 2019-2020 de l&#39;Olympique lyonnais">Olympique lyonnais</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27Olympique_de_Marseille" title="Saison 2019-2020 de l&#39;Olympique de Marseille">Olympique de Marseille</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_FC_Metz" title="Saison 2019-2020 du FC Metz">FC Metz</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27AS_Monaco_FC" title="Saison 2019-2020 de l&#39;AS Monaco FC">AS Monaco</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Montpellier_H%C3%A9rault_Sport_Club" title="Saison 2019-2020 du Montpellier H\xc3\xa9rault Sport Club">Montpellier HSC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_FC_Nantes" title="Saison 2019-2020 du FC Nantes">FC Nantes</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27OGC_Nice" title="Saison 2019-2020 de l&#39;OGC Nice">OGC Nice</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_N%C3%AEmes_Olympique" title="Saison 2019-2020 du N\xc3\xaemes Olympique">N\xc3\xaemes Olympique</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Paris_Saint-Germain" title="Saison 2019-2020 du Paris Saint-Germain">Paris Saint-Germain</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Stade_de_Reims" title="Saison 2019-2020 du Stade de Reims">Stade de Reims</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Stade_rennais_FC" title="Saison 2019-2020 du Stade rennais FC">Stade rennais</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27AS_Saint-%C3%89tienne" title="Saison 2019-2020 de l&#39;AS Saint-\xc3\x89tienne">AS Saint-\xc3\x89tienne</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Racing_Club_de_Strasbourg_Alsace" title="Saison 2019-2020 du Racing Club de Strasbourg Alsace">RC Strasbourg Alsace</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Toulouse_Football_Club" title="Saison 2019-2020 du Toulouse Football Club">Toulouse FC</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center"><a href="/wiki/Championnat_de_France_de_football_de_deuxi%C3%A8me_division_2019-2020" title="Championnat de France de football de deuxi\xc3\xa8me division 2019-2020">Ligue 2</a></th>\n<td class="navbox-list navbox-even" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Saison_2019-2020_de_l%27AC_Ajaccio" title="Saison 2019-2020 de l&#39;AC Ajaccio">AC Ajaccien</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27AJ_Auxerre" title="Saison 2019-2020 de l&#39;AJ Auxerre">AJ Auxerre</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Stade_Malherbe_Caen" title="Saison 2019-2020 du Stade Malherbe Caen">Stade Malherbe Caen</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_FC_Chambly_Oise" title="Saison 2019-2020 du FC Chambly Oise">FC Chambly</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_la_Berrichonne_de_Ch%C3%A2teauroux" title="Saison 2019-2020 de la Berrichonne de Ch\xc3\xa2teauroux">LB Ch\xc3\xa2teauroux</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Clermont_Foot_63" title="Saison 2019-2020 du Clermont Foot 63">Clermont Foot</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Grenoble_Foot_38" title="Saison 2019-2020 du Grenoble Foot 38">Grenoble Foot</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27En_avant_Guingamp" title="Saison 2019-2020 de l&#39;En avant Guingamp">EA Guingamp</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Havre_Athletic_Club" title="Saison 2019-2020 du Havre Athletic Club">Le Havre AC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Mans_Football_Club" title="Saison 2019-2020 du Mans Football Club">Le Mans FC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Racing_Club_de_Lens" title="Saison 2019-2020 du Racing Club de Lens">RC Lens</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_FC_Lorient" title="Saison 2019-2020 du FC Lorient">FC Lorient</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27AS_Nancy-Lorraine" title="Saison 2019-2020 de l&#39;AS Nancy-Lorraine">AS Nancy-Lorraine</a></li>\n<li><a href="/wiki/Saison_2019-2020_des_Chamois_niortais" title="Saison 2019-2020 des Chamois niortais">Chamois niortais</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27Union_sportive_Orl%C3%A9ans_Loiret_football" title="Saison 2019-2020 de l&#39;Union sportive Orl\xc3\xa9ans Loiret football">US Orl\xc3\xa9ans</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Paris_Football_Club" title="Saison 2019-2020 du Paris Football Club">Paris FC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Rodez_Aveyron_Football" title="Saison 2019-2020 du Rodez Aveyron Football">Rodez AF</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_FC_Sochaux-Montb%C3%A9liard" title="Saison 2019-2020 du FC Sochaux-Montb\xc3\xa9liard">FC Sochaux-Montb\xc3\xa9liard</a></li>\n<li><a href="/wiki/Saison_2019-2020_de_l%27ESTAC_Troyes" title="Saison 2019-2020 de l&#39;ESTAC Troyes">ES Troyes AC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Valenciennes_FC" title="Saison 2019-2020 du Valenciennes FC">Valenciennes FC</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center"><a href="/wiki/Championnat_de_France_de_football_de_National_2019-2020" title="Championnat de France de football de National 2019-2020">National</a></th>\n<td class="navbox-list" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Saison_2019-2020_du_Red_Star_Football_Club" title="Saison 2019-2020 du Red Star Football Club">Red Star FC</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center"><a href="/wiki/Championnat_de_France_f%C3%A9minin_de_football_2019-2020" title="Championnat de France f\xc3\xa9minin de football 2019-2020">Division 1 f\xc3\xa9minine</a></th>\n<td class="navbox-list navbox-even" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Saison_2019-2020_de_l%27Olympique_lyonnais_(f%C3%A9minines)" title="Saison 2019-2020 de l&#39;Olympique lyonnais (f\xc3\xa9minines)">Olympique lyonnais</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Montpellier_H%C3%A9rault_Sport_Club_(f%C3%A9minines)" title="Saison 2019-2020 du Montpellier H\xc3\xa9rault Sport Club (f\xc3\xa9minines)">Montpellier HSC</a></li>\n<li><a href="/wiki/Saison_2019-2020_du_Paris_Saint-Germain_(f%C3%A9minines)" title="Saison 2019-2020 du Paris Saint-Germain (f\xc3\xa9minines)">Paris-Saint-Germain</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center">Autres comp\xc3\xa9titions</th>\n<td class="navbox-list" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_de_France_de_football_de_National_2_2019-2020" title="Championnat de France de football de National 2 2019-2020">National 2</a></li>\n<li><a href="/wiki/Championnat_de_France_de_football_de_National_3_2019-2020" title="Championnat de France de football de National 3 2019-2020">National 3</a></li>\n<li><a href="/wiki/Troph%C3%A9e_des_champions_2019" title="Troph\xc3\xa9e des champions 2019">Troph\xc3\xa9e des champions</a></li>\n<li><a href="/wiki/Coupe_de_France_de_football_2019-2020" title="Coupe de France de football 2019-2020">Coupe de France</a></li>\n<li><a href="/wiki/Coupe_de_la_Ligue_fran%C3%A7aise_de_football_2019-2020" title="Coupe de la Ligue fran\xc3\xa7aise de football 2019-2020">Coupe de la Ligue</a></li>\n<li><a href="/wiki/Championnat_de_France_f%C3%A9minin_de_football_de_deuxi%C3%A8me_division_2019-2020" title="Championnat de France f\xc3\xa9minin de football de deuxi\xc3\xa8me division 2019-2020">Division 2 f\xc3\xa9minine</a></li>\n<li><a href="/wiki/Troph%C3%A9e_des_championnes_2019" title="Troph\xc3\xa9e des championnes 2019">Troph\xc3\xa9e des championnes</a></li>\n<li><a href="/wiki/Coupe_de_France_f%C3%A9minine_de_football_2019-2020" title="Coupe de France f\xc3\xa9minine de football 2019-2020">Coupe de France f\xc3\xa9minine</a></li>\n<li><a href="/wiki/Coupe_Gambardella_2019-2020" title="Coupe Gambardella 2019-2020">Coupe Gambardella</a></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center">Distinctions</th>\n<td class="navbox-list navbox-even" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">Troph\xc3\xa9es UNFP 2020 <small>(\xc3\xa9dition annul\xc3\xa9e)</small></span></li></ul>\n</div></td>\n</tr> <tr>\n<th class="navbox-group" style="background:#B3D9B3; vertical-align:middle; text-align:center">Pratiques diversifi\xc3\xa9es</th>\n<td class="navbox-list" style="text-align:left;; background:#E6F2E6;"><div class="liste-horizontale">\n<ul><li><a href="/wiki/Championnat_de_France_de_futsal_2019-2020" title="Championnat de France de futsal 2019-2020">Division 1 Futsal</a></li>\n<li><a href="/wiki/Championnat_de_France_de_futsal_de_deuxi%C3%A8me_division_2019-2020" title="Championnat de France de futsal de deuxi\xc3\xa8me division 2019-2020">Division 2 Futsal</a></li>\n<li><a href="/wiki/Coupe_de_France_de_futsal_2019-2020" title="Coupe de France de futsal 2019-2020">Coupe Nationale Futsal</a></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">National Beach Soccer</span></li>\n<li><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r216724214" /><span class="texte-gris">National Beach Soccer f\xc3\xa9minin</span></li></ul>\n</div></td>\n</tr>                        </tbody></table>\n</div>\n<ul id="bandeau-portail" class="bandeau-portail"><li><span class="bandeau-portail-element"><span class="bandeau-portail-icone"><span class="noviewer" typeof="mw:File"><a href="/wiki/Portail:Football" title="Portail du football"><img alt="ic\xc3\xb4ne d\xc3\xa9corative" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Soccer.svg/24px-Soccer.svg.png" decoding="async" width="24" height="24" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Soccer.svg/36px-Soccer.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Soccer.svg/48px-Soccer.svg.png 2x" data-file-width="250" data-file-height="250" /></a></span></span> <span class="bandeau-portail-texte"><a href="/wiki/Portail:Football" title="Portail:Football">Portail du football</a></span> </span></li> <li><span class="bandeau-portail-element"><span class="bandeau-portail-icone"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Portail:France" title="Portail de la France"><img alt="ic\xc3\xb4ne d\xc3\xa9corative" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/40px-Flag_of_France.svg.png" decoding="async" width="33" height="22" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/60px-Flag_of_France.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/120px-Flag_of_France.svg.png 2x" data-file-width="900" data-file-height="600" /></a></span></span> <span class="bandeau-portail-texte"><a href="/wiki/Portail:France" title="Portail:France">Portail de la France</a></span> </span></li> <li><span class="bandeau-portail-element"><span class="bandeau-portail-icone"><span class="mw-image-border noviewer" typeof="mw:File"><a href="/wiki/Portail:Monaco" title="Portail de Monaco"><img alt="ic\xc3\xb4ne d\xc3\xa9corative" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/28px-Flag_of_Monaco.svg.png" decoding="async" width="28" height="22" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/41px-Flag_of_Monaco.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/55px-Flag_of_Monaco.svg.png 2x" data-file-width="1000" data-file-height="800" /></a></span></span> <span class="bandeau-portail-texte"><a href="/wiki/Portail:Monaco" title="Portail:Monaco">Portail de Monaco</a></span> </span></li> <li><span class="bandeau-portail-element"><span class="bandeau-portail-icone"><span class="noviewer" typeof="mw:File"><a href="/wiki/Portail:Ann%C3%A9es_2010" title="Portail des ann\xc3\xa9es 2010"><img alt="ic\xc3\xb4ne d\xc3\xa9corative" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Nokia_Lumia_1020_Front.svg/20px-Nokia_Lumia_1020_Front.svg.png" decoding="async" width="13" height="24" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/08/Nokia_Lumia_1020_Front.svg/40px-Nokia_Lumia_1020_Front.svg.png 2x" data-file-width="928" data-file-height="1686" /></a></span></span> <span class="bandeau-portail-texte"><a href="/wiki/Portail:Ann%C3%A9es_2010" title="Portail:Ann\xc3\xa9es 2010">Portail des ann\xc3\xa9es 2010</a></span> </span></li> <li><span class="bandeau-portail-element"><span class="bandeau-portail-icone"><span class="noviewer" typeof="mw:File"><a href="/wiki/Portail:Ann%C3%A9es_2020" title="Portail des ann\xc3\xa9es 2020"><img alt="ic\xc3\xb4ne d\xc3\xa9corative" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Elongated_circle_2020.svg/40px-Elongated_circle_2020.svg.png" decoding="async" width="30" height="24" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Elongated_circle_2020.svg/60px-Elongated_circle_2020.svg.png 1.5x" data-file-width="750" data-file-height="600" /></a></span></span> <span class="bandeau-portail-texte"><a href="/wiki/Portail:Ann%C3%A9es_2020" title="Portail:Ann\xc3\xa9es 2020">Portail des ann\xc3\xa9es 2020</a></span> </span></li>                </ul>\n<!-- \nNewPP limit report\nParsed by mw\xe2\x80\x90web.codfw.main\xe2\x80\x90799f697578\xe2\x80\x90d6n4z\nCached time: 20250317153724\nCache expiry: 2592000\nReduced expiry: false\nComplications: [show\xe2\x80\x90toc]\nCPU time usage: 2.206 seconds\nReal time usage: 2.724 seconds\nPreprocessor visited node count: 174982/1000000\nPost\xe2\x80\x90expand include size: 697892/2097152 bytes\nTemplate argument size: 201628/2097152 bytes\nHighest expansion depth: 17/100\nExpensive parser function count: 10/500\nUnstrip recursion depth: 0/20\nUnstrip post\xe2\x80\x90expand size: 46509/5000000 bytes\nLua time usage: 0.162/10.000 seconds\nLua memory usage: 6577042/52428800 bytes\nNumber of Wikibase entities loaded: 1/400\n-->\n<!--\nTransclusion expansion time report (%,ms,calls,template)\n100.00% 2167.722      1 -total\n 37.69%  816.948     20 Mod\xc3\xa8le:Foot_r\xc3\xa9sultat\n 32.02%  694.088    416 Mod\xc3\xa8le:Foot_couleur\n  9.87%  214.042      1 Mod\xc3\xa8le:Infobox_Comp\xc3\xa9tition_sportive\n  5.13%  111.291     29 Mod\xc3\xa8le:Trim\n  5.06%  109.579     60 Mod\xc3\xa8le:Foot_classement\n  4.80%  104.045     67 Mod\xc3\xa8le:Infobox_V3/Tableau_Ligne_mixte\n  4.58%   99.345      1 Mod\xc3\xa8le:R\xc3\xa9f\xc3\xa9rences\n  4.16%   90.196      1 Mod\xc3\xa8le:Portail\n  3.48%   75.532     25 Mod\xc3\xa8le:Lien_web\n-->\n\n<!-- Saved in parser cache with key frwiki:pcache:12518858:|#|:idhash:canonical and timestamp 20250317153724 and revision id 223938410. Rendering was triggered because: page-view\n -->\n</div><!--esi <esi:include src="/esitest-fa8a495983347898/content" /> --><noscript><img src="https://login.wikimedia.org/wiki/Special:CentralAutoLogin/start?useformat=desktop&amp;type=1x1&amp;usesul3=0" alt="" width="1" height="1" style="border: none; position: absolute;"></noscript>\n<div class="printfooter" data-nosnippet="">Ce document provient de \xc2\xab&#160;<a dir="ltr" href="https://fr.wikipedia.org/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;oldid=223938410">https://fr.wikipedia.org/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;oldid=223938410</a>&#160;\xc2\xbb.</div></div>\n\t\t\t\t\t<div id="catlinks" class="catlinks" data-mw="interface"><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Cat%C3%A9gorie:Accueil" title="Cat\xc3\xa9gorie:Accueil">Cat\xc3\xa9gories</a>\xe2\x80\xaf: <ul><li><a href="/wiki/Cat%C3%A9gorie:Championnat_de_France_de_football_2019-2020" title="Cat\xc3\xa9gorie:Championnat de France de football 2019-2020">Championnat de France de football 2019-2020</a></li><li><a href="/wiki/Cat%C3%A9gorie:Championnat_national_de_football_2019-2020" title="Cat\xc3\xa9gorie:Championnat national de football 2019-2020">Championnat national de football 2019-2020</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Cat\xc3\xa9gories cach\xc3\xa9es\xe2\x80\xaf: <ul><li><a href="/wiki/Cat%C3%A9gorie:Page_utilisant_une_frise_chronologique" title="Cat\xc3\xa9gorie:Page utilisant une frise chronologique">Page utilisant une frise chronologique</a></li><li><a href="/wiki/Cat%C3%A9gorie:Article_contenant_un_lien_mort" title="Cat\xc3\xa9gorie:Article contenant un lien mort">Article contenant un lien mort</a></li><li><a href="/wiki/Cat%C3%A9gorie:Article_utilisant_une_Infobox" title="Cat\xc3\xa9gorie:Article utilisant une Infobox">Article utilisant une Infobox</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:Football/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:Football/Articles li\xc3\xa9s">Portail:Football/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:Sport/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:Sport/Articles li\xc3\xa9s">Portail:Sport/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:France/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:France/Articles li\xc3\xa9s">Portail:France/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:Europe/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:Europe/Articles li\xc3\xa9s">Portail:Europe/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:Monaco/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:Monaco/Articles li\xc3\xa9s">Portail:Monaco/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:Ann%C3%A9es_2010/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:Ann\xc3\xa9es 2010/Articles li\xc3\xa9s">Portail:Ann\xc3\xa9es 2010/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:XXIe_si%C3%A8cle/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:XXIe si\xc3\xa8cle/Articles li\xc3\xa9s">Portail:XXIe si\xc3\xa8cle/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:%C3%89poque_contemporaine/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:\xc3\x89poque contemporaine/Articles li\xc3\xa9s">Portail:\xc3\x89poque contemporaine/Articles li\xc3\xa9s</a></li><li><a href="/wiki/Cat%C3%A9gorie:Portail:Ann%C3%A9es_2020/Articles_li%C3%A9s" title="Cat\xc3\xa9gorie:Portail:Ann\xc3\xa9es 2020/Articles li\xc3\xa9s">Portail:Ann\xc3\xa9es 2020/Articles li\xc3\xa9s</a></li></ul></div></div>\n\t\t\t\t</div>\n\t\t\t</main>\n\t\t\t\n\t\t</div>\n\t\t<div class="mw-footer-container">\n\t\t\t\n<footer id="footer" class="mw-footer" >\n\t<ul id="footer-info">\n\t<li id="footer-info-lastmod"> La derni\xc3\xa8re modification de cette page a \xc3\xa9t\xc3\xa9 faite le 16 mars 2025 \xc3\xa0 09:59.</li>\n\t<li id="footer-info-copyright"><span style="white-space: normal"><a href="/wiki/Wikip%C3%A9dia:Citation_et_r%C3%A9utilisation_du_contenu_de_Wikip%C3%A9dia" title="Wikip\xc3\xa9dia:Citation et r\xc3\xa9utilisation du contenu de Wikip\xc3\xa9dia">Droit d\'auteur</a>&#160;: les textes sont disponibles sous <a rel="nofollow" class="external text" href="https://creativecommons.org/licenses/by-sa/4.0/deed.fr">licence Creative Commons attribution, partage dans les m\xc3\xaames conditions</a>&#160;; d\xe2\x80\x99autres conditions peuvent s\xe2\x80\x99appliquer. Voyez les <a class="external text" href="https://foundation.wikimedia.org/wiki/Policy:Terms_of_Use/fr">conditions d\xe2\x80\x99utilisation</a> pour plus de d\xc3\xa9tails, ainsi que les <a href="/wiki/Wikip%C3%A9dia:Cr%C3%A9dits_graphiques" title="Wikip\xc3\xa9dia:Cr\xc3\xa9dits graphiques">cr\xc3\xa9dits graphiques</a>. En cas de r\xc3\xa9utilisation des textes de cette page, voyez <a href="/wiki/Sp%C3%A9cial:Citer/Championnat_de_France_de_football_2019-2020" title="Sp\xc3\xa9cial:Citer/Championnat de France de football 2019-2020">comment citer les auteurs et mentionner la licence</a>.<br />\nWikipedia\xc2\xae est une marque d\xc3\xa9pos\xc3\xa9e de la <a rel="nofollow" class="external text" href="https://wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, organisation de bienfaisance r\xc3\xa9gie par le paragraphe <a href="/wiki/501c" title="501c">501(c)(3)</a> du code fiscal des \xc3\x89tats-Unis.</span><br /></li>\n</ul>\n\n\t<ul id="footer-places">\n\t<li id="footer-places-privacy"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Privacy_policy/fr">Politique de confidentialit\xc3\xa9</a></li>\n\t<li id="footer-places-about"><a href="/wiki/Wikip%C3%A9dia:%C3%80_propos_de_Wikip%C3%A9dia">\xc3\x80 propos de Wikip\xc3\xa9dia</a></li>\n\t<li id="footer-places-disclaimers"><a href="/wiki/Wikip%C3%A9dia:Avertissements_g%C3%A9n%C3%A9raux">Avertissements</a></li>\n\t<li id="footer-places-contact"><a href="//fr.wikipedia.org/wiki/Wikip\xc3\xa9dia:Contact">Contact</a></li>\n\t<li id="footer-places-wm-codeofconduct"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Universal_Code_of_Conduct">Code de conduite</a></li>\n\t<li id="footer-places-developers"><a href="https://developer.wikimedia.org">D\xc3\xa9veloppeurs</a></li>\n\t<li id="footer-places-statslink"><a href="https://stats.wikimedia.org/#/fr.wikipedia.org">Statistiques</a></li>\n\t<li id="footer-places-cookiestatement"><a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Policy:Cookie_statement">D\xc3\xa9claration sur les t\xc3\xa9moins (cookies)</a></li>\n\t<li id="footer-places-mobileview"><a href="//fr.m.wikipedia.org/w/index.php?title=Championnat_de_France_de_football_2019-2020&amp;mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Version mobile</a></li>\n</ul>\n\n\t<ul id="footer-icons" class="noprint">\n\t<li id="footer-copyrightico"><a href="https://wikimediafoundation.org/" class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled"><picture><source media="(min-width: 500px)" srcset="/static/images/footer/wikimedia-button.svg" width="84" height="29"><img src="/static/images/footer/wikimedia.svg" width="25" height="25" alt="Wikimedia Foundation" lang="en" loading="lazy"></picture></a></li>\n\t<li id="footer-poweredbyico"><a href="https://www.mediawiki.org/" class="cdx-button cdx-button--fake-button cdx-button--size-large cdx-button--fake-button--enabled"><picture><source media="(min-width: 500px)" srcset="/w/resources/assets/poweredby_mediawiki.svg" width="88" height="31"><img src="/w/resources/assets/mediawiki_compact.svg" alt="Powered by MediaWiki" lang="en" width="25" height="25" loading="lazy"></picture></a></li>\n</ul>\n\n</footer>\n\n\t\t</div>\n\t</div> \n</div> \n<div class="vector-header-container vector-sticky-header-container">\n\t<div id="vector-sticky-header" class="vector-sticky-header">\n\t\t<div class="vector-sticky-header-start">\n\t\t\t<div class="vector-sticky-header-icon-start vector-button-flush-left vector-button-flush-right" aria-hidden="true">\n\t\t\t\t<button class="cdx-button cdx-button--weight-quiet cdx-button--icon-only vector-sticky-header-search-toggle" tabindex="-1" data-event-name="ui.vector-sticky-search-form.icon"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span>\n\n<span>Rechercher</span>\n\t\t\t</button>\n\t\t</div>\n\t\t\t\n\t\t<div role="search" class="vector-search-box-vue  vector-search-box-show-thumbnail vector-search-box">\n\t\t\t<div class="vector-typeahead-search-container">\n\t\t\t\t<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail">\n\t\t\t\t\t<form action="/w/index.php" id="vector-sticky-search-form" class="cdx-search-input cdx-search-input--has-end-button">\n\t\t\t\t\t\t<div  class="cdx-search-input__input-wrapper"  data-search-loc="header-moved">\n\t\t\t\t\t\t\t<div class="cdx-text-input cdx-text-input--has-start-icon">\n\t\t\t\t\t\t\t\t<input\n\t\t\t\t\t\t\t\t\tclass="cdx-text-input__input"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\ttype="search" name="search" placeholder="Rechercher sur Wikip\xc3\xa9dia">\n\t\t\t\t\t\t\t\t<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<input type="hidden" name="title" value="Sp\xc3\xa9cial:Recherche">\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<button class="cdx-button cdx-search-input__end-button">Rechercher</button>\n\t\t\t\t\t</form>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class="vector-sticky-header-context-bar">\n\t\t\t\t<nav aria-label="Sommaire" class="vector-toc-landmark">\n\t\t\t\t\t\t\n\t\t\t\t\t<div id="vector-sticky-header-toc" class="vector-dropdown mw-portlet mw-portlet-sticky-header-toc vector-sticky-header-toc vector-button-flush-left"  >\n\t\t\t\t\t\t<input type="checkbox" id="vector-sticky-header-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-sticky-header-toc" class="vector-dropdown-checkbox "  aria-label="Basculer la table des mati\xc3\xa8res"  >\n\t\t\t\t\t\t<label id="vector-sticky-header-toc-label" for="vector-sticky-header-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"  ><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span>\n\n<span class="vector-dropdown-label-text">Basculer la table des mati\xc3\xa8res</span>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t\t<div class="vector-dropdown-content">\n\t\t\t\t\t\n\t\t\t\t\t\t<div id="vector-sticky-header-toc-unpinned-container" class="vector-unpinned-container">\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t</nav>\n\t\t\t\t<div class="vector-sticky-header-context-bar-primary" aria-hidden="true" ><span class="mw-page-title-main">Championnat de France de football 2019-2020</span></div>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class="vector-sticky-header-end" aria-hidden="true">\n\t\t\t<div class="vector-sticky-header-icons">\n\t\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-talk-sticky-header" tabindex="-1" data-event-name="talk-sticky-header"><span class="vector-icon mw-ui-icon-speechBubbles mw-ui-icon-wikimedia-speechBubbles"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-subject-sticky-header" tabindex="-1" data-event-name="subject-sticky-header"><span class="vector-icon mw-ui-icon-article mw-ui-icon-wikimedia-article"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-history-sticky-header" tabindex="-1" data-event-name="history-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-history mw-ui-icon-wikimedia-wikimedia-history"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only mw-watchlink" id="ca-watchstar-sticky-header" tabindex="-1" data-event-name="watch-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-star mw-ui-icon-wikimedia-wikimedia-star"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-ve-edit-sticky-header" tabindex="-1" data-event-name="ve-edit-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-edit mw-ui-icon-wikimedia-wikimedia-edit"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-edit-sticky-header" tabindex="-1" data-event-name="wikitext-edit-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-wikiText mw-ui-icon-wikimedia-wikimedia-wikiText"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only" id="ca-viewsource-sticky-header" tabindex="-1" data-event-name="ve-edit-protected-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-editLock mw-ui-icon-wikimedia-wikimedia-editLock"></span>\n\n<span></span>\n\t\t\t</a>\n\t\t</div>\n\t\t\t<div class="vector-sticky-header-buttons">\n\t\t\t\t<button class="cdx-button cdx-button--weight-quiet mw-interlanguage-selector" id="p-lang-btn-sticky-header" tabindex="-1" data-event-name="ui.dropdown-p-lang-btn-sticky-header"><span class="vector-icon mw-ui-icon-wikimedia-language mw-ui-icon-wikimedia-wikimedia-language"></span>\n\n<span>27\xc2\xa0langues</span>\n\t\t\t</button>\n\t\t\t<a href="#" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive" id="ca-addsection-sticky-header" tabindex="-1" data-event-name="addsection-sticky-header"><span class="vector-icon mw-ui-icon-speechBubbleAdd-progressive mw-ui-icon-wikimedia-speechBubbleAdd-progressive"></span>\n\n<span>Ajouter un sujet</span>\n\t\t\t</a>\n\t\t</div>\n\t\t\t<div class="vector-sticky-header-icon-end">\n\t\t\t\t<div class="vector-user-links">\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>\n<div class="mw-portlet mw-portlet-dock-bottom emptyPortlet" id="p-dock-bottom">\n\t<ul>\n\t\t\n\t</ul>\n</div>\n<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgHostname":"mw-web.eqiad.main-5c544ccb5b-jms2f","wgBackendResponseTime":441,"wgPageParseReport":{"limitreport":{"cputime":"2.206","walltime":"2.724","ppvisitednodes":{"value":174982,"limit":1000000},"postexpandincludesize":{"value":697892,"limit":2097152},"templateargumentsize":{"value":201628,"limit":2097152},"expansiondepth":{"value":17,"limit":100},"expensivefunctioncount":{"value":10,"limit":500},"unstrip-depth":{"value":0,"limit":20},"unstrip-size":{"value":46509,"limit":5000000},"entityaccesscount":{"value":1,"limit":400},"timingprofile":["100.00% 2167.722      1 -total"," 37.69%  816.948     20 Mod\xc3\xa8le:Foot_r\xc3\xa9sultat"," 32.02%  694.088    416 Mod\xc3\xa8le:Foot_couleur","  9.87%  214.042      1 Mod\xc3\xa8le:Infobox_Comp\xc3\xa9tition_sportive","  5.13%  111.291     29 Mod\xc3\xa8le:Trim","  5.06%  109.579     60 Mod\xc3\xa8le:Foot_classement","  4.80%  104.045     67 Mod\xc3\xa8le:Infobox_V3/Tableau_Ligne_mixte","  4.58%   99.345      1 Mod\xc3\xa8le:R\xc3\xa9f\xc3\xa9rences","  4.16%   90.196      1 Mod\xc3\xa8le:Portail","  3.48%   75.532     25 Mod\xc3\xa8le:Lien_web"]},"scribunto":{"limitreport-timeusage":{"value":"0.162","limit":"10.000"},"limitreport-memusage":{"value":6577042,"limit":52428800}},"cachereport":{"origin":"mw-web.codfw.main-799f697578-d6n4z","timestamp":"20250317153724","ttl":2592000,"transientcontent":false}}});});</script>\n<script type="application/ld+json">{"@context":"https:\\/\\/schema.org","@type":"Article","name":"Championnat de France de football 2019-2020","url":"https:\\/\\/fr.wikipedia.org\\/wiki\\/Championnat_de_France_de_football_2019-2020","sameAs":"http:\\/\\/www.wikidata.org\\/entity\\/Q61862323","mainEntity":"http:\\/\\/www.wikidata.org\\/entity\\/Q61862323","author":{"@type":"Organization","name":"Contributeurs aux projets Wikimedia"},"publisher":{"@type":"Organization","name":"Fondation Wikimedia, Inc.","logo":{"@type":"ImageObject","url":"https:\\/\\/www.wikimedia.org\\/static\\/images\\/wmf-hor-googpub.png"}},"datePublished":"2019-04-28T11:04:48Z","dateModified":"2025-03-16T08:59:06Z","image":"https:\\/\\/upload.wikimedia.org\\/wikipedia\\/fr\\/1\\/14\\/Ligue_1_Conforama.svg","headline":"82e \\u00e9dition du championnat de France de football"}</script>\n</body>\n</html>'

Step 2️⃣: search this abundant source code for the tags that will extract the information we’re interested in. The main interest of the BeautifulSoup package is to offer easy-to-use methods for searching complex texts for strings of characters from HTML or XML tags.

import bs4
page = bs4.BeautifulSoup(request_text, "lxml")

If we print the page object created with BeautifulSoup, we see that it is no longer a string but an actual HTML page with tags. We can now search for elements within these tags.

3.3 The find method

As a first illustration of the power of BeautifulSoup, we want to know the title of the page. To do this, we use the .find method and ask it “title”.

print(page.find("title"))
<title>Championnat de France de football 2019-2020 — Wikipédia</title>

The .find method only returns the first occurrence of the element.

To verify this, you can:

  • copy the snippet of source code obtained when you search for a table,
  • paste it into a cell in your notebook,
  • and switch the cell to “Markdown”.

The cell with the copied source code gives:

print(page.find("table"))
<table><caption style="background-color:#99cc99;color:#000000;">Généralités</caption><tbody><tr>
<th scope="row" style="width:10.5em;">Sport</th>
<td>
<a href="/wiki/Football" title="Football">Football</a></td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Organisateur(s)</th>
<td>
<a href="/wiki/Ligue_de_football_professionnel_(France)" title="Ligue de football professionnel (France)">LFP</a></td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Édition</th>
<td>
<abbr class="abbr" title="Quatre-vingt-deuxième (huitante-deuxième / octante-deuxième)">82<sup>e</sup></abbr></td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Lieu(x)</th>
<td>
<span class="datasortkey" data-sort-value="France"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a class="mw-file-description" href="/wiki/Fichier:Flag_of_France_(1976%E2%80%932020).svg" title="Drapeau de la France"><img alt="Drapeau de la France" class="mw-file-element" data-file-height="600" data-file-width="900" decoding="async" height="13" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_France_%281976%E2%80%932020%29.svg/20px-Flag_of_France_%281976%E2%80%932020%29.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_France_%281976%E2%80%932020%29.svg/30px-Flag_of_France_%281976%E2%80%932020%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_France_%281976%E2%80%932020%29.svg/40px-Flag_of_France_%281976%E2%80%932020%29.svg.png 2x" width="20"/></a></span> </span><a href="/wiki/France" title="France">France</a></span> et <br/><span class="datasortkey" data-sort-value="Monaco"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a class="mw-file-description" href="/wiki/Fichier:Flag_of_Monaco.svg" title="Drapeau de Monaco"><img alt="Drapeau de Monaco" class="mw-file-element" data-file-height="800" data-file-width="1000" decoding="async" height="16" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/20px-Flag_of_Monaco.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/30px-Flag_of_Monaco.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Flag_of_Monaco.svg/40px-Flag_of_Monaco.svg.png 2x" width="20"/></a></span> </span><a href="/wiki/Monaco" title="Monaco">Monaco</a></span></td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Date</th>
<td>
Du <time class="nowrap date-lien" data-sort-value="2019-08-09" datetime="2019-08-09"><a href="/wiki/9_ao%C3%BBt_en_sport" title="9 août en sport">9</a> <a class="mw-redirect" href="/wiki/Ao%C3%BBt_2019_en_sport" title="Août 2019 en sport">août</a> <a href="/wiki/2019_en_football" title="2019 en football">2019</a></time><br/>au <time class="nowrap date-lien" data-sort-value="2020-03-08" datetime="2020-03-08"><a href="/wiki/8_mars_en_sport" title="8 mars en sport">8 mars</a> <a href="/wiki/2020_en_football" title="2020 en football">2020</a></time> <small>(arrêt définitif)</small></td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Participants</th>
<td>
20 équipes</td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Matchs joués</th>
<td>
279 (sur 380 prévus)</td>
</tr>
<tr>
<th scope="row" style="width:10.5em;">Site web officiel</th>
<td>
<cite class="ouvrage" id="site_officiel" style="font-style: normal;"><a class="external text" href="https://www.ligue1.fr/" rel="nofollow">Site officiel</a></cite></td>
</tr></tbody></table>

which is the source text that generates the following table:

Généralités
Sport Football
Organisateur(s) LFP
Édition 82e
Lieu(x) Drapeau de la France France et
Drapeau de Monaco Monaco
Date Du
au (arrêt définitif)
Participants 20 équipes
Matchs joués 279 (sur 380 prévus)
Site web officiel Site officiel

3.4 The findAll Method

To find all occurrences, use .findAll().

print("Il y a", len(page.findAll("table")), "éléments dans la page qui sont des <table>")
Il y a 34 éléments dans la page qui sont des <table>
Tip

Python is not the only language that allows you to retrieve elements from a web page. This is one of the main objectives of Javascript, which is accessible through any web browser.

For example, to draw a parallel with page.find('title') that we used in Python, you can open the previously mentioned page with your browser. After opening the browser’s developer tools (CTRL+SHIFT+K on Firefox), you can type document.querySelector("title") in the console to get the content of the HTML node you are looking for:

If you use Selenium for web scraping, you will actually encounter these Javascript verbs in any method you use.

Understanding the structure of a page and its interaction with the browser is extremely useful when doing scraping, even when the site is purely static, meaning it does not have elements reacting to user actions on the web browser.

4 Guided Exercise: Get the List of Ligue 1 Teams

In the first paragraph of the “Participants” page, there is a table with the results of the year.

Exercise 1: Retrieve the Participants of Ligue 1

To do this, we will proceed in 6 steps:

  1. Find the table
  2. Retrieve each row from the table
  3. Clean up the outputs by keeping only the text in a row
  4. Generalize for all rows
  5. Retrieve the table headers
  6. Finalize the table

1️⃣ Find the table

# on identifie le tableau en question : c'est le premier qui a cette classe "wikitable sortable"
tableau_participants = page.find('table', {'class' : 'wikitable sortable'})
print(tableau_participants)

2️⃣ Retrieve each row from the table

Let’s first search for the rows where tr tag appears

table_body = tableau_participants.find('tbody')
rows = table_body.find_all('tr')

You get a list where each element is one of the rows in the table. To illustrate this, we will first display the first row. This corresponds to the column headers:

print(rows[0])
<tr>
<th scope="col">Club
</th>
<th scope="col">Dernière<br/>montée
</th>
<th scope="col">Budget<sup class="reference" id="cite_ref-3"><a href="#cite_note-3"><span class="cite_crochet">[</span>3<span class="cite_crochet">]</span></a></sup><br/>en M<a href="/wiki/Euro" title="Euro">€</a>
</th>
<th scope="col">Classement<br/><a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">2018-2019</a>
</th>
<th scope="col">Entraîneur
</th>
<th scope="col">Depuis
</th>
<th scope="col">Stade
</th>
<th scope="col">Capacité<br/>en L1<sup class="reference" id="cite_ref-4"><a href="#cite_note-4"><span class="cite_crochet">[</span>4<span class="cite_crochet">]</span></a></sup>
</th>
<th scope="col">Nombre<br/>de saisons<br/>en L1
</th></tr>

The second row will correspond to the row of the first club listed in the table:

print(rows[1])
<tr bgcolor="#97DEFF">
<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>
</td>
<td>1974
</td>
<td>637
</td>
<td><span data-sort-value="101 !"></span><abbr class="abbr" title="Premier">1<sup>er</sup></abbr>
</td>
<td align="left"><span class="flagicon"><span class="mw-image-border noviewer" typeof="mw:File"><a class="mw-file-description" href="/wiki/Fichier:Flag_of_Germany.svg" title="Drapeau : Allemagne"><img alt="" class="mw-file-element" data-file-height="600" data-file-width="1000" decoding="async" height="12" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/20px-Flag_of_Germany.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/30px-Flag_of_Germany.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/40px-Flag_of_Germany.svg.png 2x" width="20"/></a></span></span> <a href="/wiki/Thomas_Tuchel" title="Thomas Tuchel">Thomas Tuchel</a>
</td>
<td>2018
</td>
<td><a href="/wiki/Parc_des_Princes" title="Parc des Princes">Parc des Princes</a>
</td>
<td>47 929
</td>
<td>46
</td></tr>

3️⃣ Clean the outputs by keeping only the text in a row

We will use the text attribute to strip away all the HTML layer we obtained in step 2.

An example on the first club’s row: - We start by taking all the cells in that row, using the td tag. - Then, we loop through each cell and keep only the text from the cell using the text attribute. - Finally, we apply the strip() method to ensure the text is properly formatted (no unnecessary spaces, etc.).

cols = rows[1].find_all('td')
print(cols[0])
print(cols[0].text.strip())
<td><a href="/wiki/Paris_Saint-Germain_Football_Club" title="Paris Saint-Germain Football Club">Paris Saint-Germain</a>
</td>
Paris Saint-Germain
for ele in cols : 
    print(ele.text.strip())
Paris Saint-Germain
1974
637
1er
Thomas Tuchel
2018
Parc des Princes
47 929
46

4️⃣ Generalize for all rows:

for row in rows:
    cols = row.find_all('td')
    cols = [ele.text.strip() for ele in cols]
    print(cols)
[]
['Paris Saint-Germain', '1974', '637', '1er', 'Thomas Tuchel', '2018', 'Parc des Princes', '47\xa0929', '46']
['LOSC Lille', '2000', '120', '2e', 'Christophe Galtier', '2017', 'Stade Pierre-Mauroy', '49\xa0712', '59']
['Olympique lyonnais', '1989', '310', '3e', 'Rudi Garcia', '2019', 'Groupama Stadium', '57\xa0206', '60']
['AS Saint-Étienne', '2004', '100', '4e', 'Claude Puel', '2019', 'Stade Geoffroy-Guichard', '41\xa0965', '66']
['Olympique de Marseille', '1996', '110', '5e', 'André Villas-Boas', '2019', 'Orange Vélodrome', '66\xa0226', '69']
['Montpellier HSC', '2009', '40', '6e', 'Michel Der Zakarian', '2017', 'Stade de la Mosson', '22\xa0000', '27']
['OGC Nice', '2002', '50', '7e', 'Patrick Vieira', '2018', 'Allianz Riviera', '35\xa0596', '60']
['Stade de Reims', '2018', '45', '8e', 'David Guion', '2017', 'Stade Auguste-Delaune', '20\xa0546', '35']
['Nîmes Olympique', '2018', '27', '9e', 'Bernard Blaquart', '2015', 'Stade des Costières', '15\xa0788', '35']
['Stade rennais FC', '1994', '65', '10e', 'Julien Stéphan', '2018', 'Roazhon Park', '29\xa0194', '62']
['RC Strasbourg Alsace', '2017', '43', '11e', 'Thierry Laurey', '2016', 'Stade de la Meinau', '26\xa0109', '58']
['FC Nantes', '2013', '70', '12e', 'Christian Gourcuff', '2019', 'Stade de la Beaujoire - Louis Fonteneau', '35\xa0322', '51']
['SCO d’Angers', '2015', '32', '13e', 'Stéphane Moulin', '2011', 'Stade Raymond-Kopa', '14\xa0582', '27']
['Girondins de Bordeaux', '1992', '70', '14e', 'Paulo Sousa', '2019', 'Matmut Atlantique', '42\xa0115', '66']
['Amiens SC', '2017', '30', '15e', 'Luka Elsner', '2019', 'Stade Crédit Agricole la Licorne', '12\xa0999', '2']
['Toulouse FC', '2003', '35', '16e', 'Denis Zanko', '2020', 'Stadium de Toulouse', '33\xa0033', '32']
['AS Monaco', '2013', '220', '17e', 'Robert Moreno', '2019', 'Stade Louis-II', '16\xa0500', '60']
['Dijon FCO', '2016', '38', '18e', 'Stéphane Jobard', '2019', 'Parc des Sports Gaston-Gérard', '15\xa0459', '4']
['FC Metz', '2019', '40', '1er (Ligue 2)', 'Vincent Hognon', '2019', 'Stade Saint-Symphorien', '25\xa0865', '61']
['Stade brestois 29', '2019', '30', '2e (Ligue 2)', "Olivier Dall'Oglio", '2019', 'Stade Francis-Le Blé', '14\xa0920', '13']

We have successfully retrieved the information contained in the participants’ table. But the first row is strange: it’s an empty list…

These are the headers: they are recognized by the th tag, not td.

We will put all the content into a dictionary, to later convert it into a pandas DataFrame:

dico_participants = dict()
for row in rows:
    cols = row.find_all('td')
    cols = [ele.text.strip() for ele in cols]
    if len(cols) > 0 : 
        dico_participants[cols[0]] = cols[1:]
dico_participants
{'Paris Saint-Germain': ['1974',
  '637',
  '1er',
  'Thomas Tuchel',
  '2018',
  'Parc des Princes',
  '47\xa0929',
  '46'],
 'LOSC Lille': ['2000',
  '120',
  '2e',
  'Christophe Galtier',
  '2017',
  'Stade Pierre-Mauroy',
  '49\xa0712',
  '59'],
 'Olympique lyonnais': ['1989',
  '310',
  '3e',
  'Rudi Garcia',
  '2019',
  'Groupama Stadium',
  '57\xa0206',
  '60'],
 'AS Saint-Étienne': ['2004',
  '100',
  '4e',
  'Claude Puel',
  '2019',
  'Stade Geoffroy-Guichard',
  '41\xa0965',
  '66'],
 'Olympique de Marseille': ['1996',
  '110',
  '5e',
  'André Villas-Boas',
  '2019',
  'Orange Vélodrome',
  '66\xa0226',
  '69'],
 'Montpellier HSC': ['2009',
  '40',
  '6e',
  'Michel Der Zakarian',
  '2017',
  'Stade de la Mosson',
  '22\xa0000',
  '27'],
 'OGC Nice': ['2002',
  '50',
  '7e',
  'Patrick Vieira',
  '2018',
  'Allianz Riviera',
  '35\xa0596',
  '60'],
 'Stade de Reims': ['2018',
  '45',
  '8e',
  'David Guion',
  '2017',
  'Stade Auguste-Delaune',
  '20\xa0546',
  '35'],
 'Nîmes Olympique': ['2018',
  '27',
  '9e',
  'Bernard Blaquart',
  '2015',
  'Stade des Costières',
  '15\xa0788',
  '35'],
 'Stade rennais FC': ['1994',
  '65',
  '10e',
  'Julien Stéphan',
  '2018',
  'Roazhon Park',
  '29\xa0194',
  '62'],
 'RC Strasbourg Alsace': ['2017',
  '43',
  '11e',
  'Thierry Laurey',
  '2016',
  'Stade de la Meinau',
  '26\xa0109',
  '58'],
 'FC Nantes': ['2013',
  '70',
  '12e',
  'Christian Gourcuff',
  '2019',
  'Stade de la Beaujoire - Louis Fonteneau',
  '35\xa0322',
  '51'],
 'SCO d’Angers': ['2015',
  '32',
  '13e',
  'Stéphane Moulin',
  '2011',
  'Stade Raymond-Kopa',
  '14\xa0582',
  '27'],
 'Girondins de Bordeaux': ['1992',
  '70',
  '14e',
  'Paulo Sousa',
  '2019',
  'Matmut Atlantique',
  '42\xa0115',
  '66'],
 'Amiens SC': ['2017',
  '30',
  '15e',
  'Luka Elsner',
  '2019',
  'Stade Crédit Agricole la Licorne',
  '12\xa0999',
  '2'],
 'Toulouse FC': ['2003',
  '35',
  '16e',
  'Denis Zanko',
  '2020',
  'Stadium de Toulouse',
  '33\xa0033',
  '32'],
 'AS Monaco': ['2013',
  '220',
  '17e',
  'Robert Moreno',
  '2019',
  'Stade Louis-II',
  '16\xa0500',
  '60'],
 'Dijon FCO': ['2016',
  '38',
  '18e',
  'Stéphane Jobard',
  '2019',
  'Parc des Sports Gaston-Gérard',
  '15\xa0459',
  '4'],
 'FC Metz': ['2019',
  '40',
  '1er (Ligue 2)',
  'Vincent Hognon',
  '2019',
  'Stade Saint-Symphorien',
  '25\xa0865',
  '61'],
 'Stade brestois 29': ['2019',
  '30',
  '2e (Ligue 2)',
  "Olivier Dall'Oglio",
  '2019',
  'Stade Francis-Le Blé',
  '14\xa0920',
  '13']}
import pandas as pd
data_participants = pd.DataFrame.from_dict(dico_participants,orient='index')
data_participants.head()
0 1 2 3 4 5 6 7
Paris Saint-Germain 1974 637 1er Thomas Tuchel 2018 Parc des Princes 47 929 46
LOSC Lille 2000 120 2e Christophe Galtier 2017 Stade Pierre-Mauroy 49 712 59
Olympique lyonnais 1989 310 3e Rudi Garcia 2019 Groupama Stadium 57 206 60
AS Saint-Étienne 2004 100 4e Claude Puel 2019 Stade Geoffroy-Guichard 41 965 66
Olympique de Marseille 1996 110 5e André Villas-Boas 2019 Orange Vélodrome 66 226 69

5️⃣ Retrieve the table headers:

for row in rows:
    cols = row.find_all('th')
    print(cols)
    if len(cols) > 0 : 
        cols = [ele.get_text(separator=' ').strip().title() for ele in cols]
        columns_participants = cols
[<th scope="col">Club
</th>, <th scope="col">Dernière<br/>montée
</th>, <th scope="col">Budget<sup class="reference" id="cite_ref-3"><a href="#cite_note-3"><span class="cite_crochet">[</span>3<span class="cite_crochet">]</span></a></sup><br/>en M<a href="/wiki/Euro" title="Euro">€</a>
</th>, <th scope="col">Classement<br/><a href="/wiki/Championnat_de_France_de_football_2018-2019" title="Championnat de France de football 2018-2019">2018-2019</a>
</th>, <th scope="col">Entraîneur
</th>, <th scope="col">Depuis
</th>, <th scope="col">Stade
</th>, <th scope="col">Capacité<br/>en L1<sup class="reference" id="cite_ref-4"><a href="#cite_note-4"><span class="cite_crochet">[</span>4<span class="cite_crochet">]</span></a></sup>
</th>, <th scope="col">Nombre<br/>de saisons<br/>en L1
</th>]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
columns_participants
['Club',
 'Dernière Montée',
 'Budget [ 3 ] En M €',
 'Classement 2018-2019',
 'Entraîneur',
 'Depuis',
 'Stade',
 'Capacité En L1 [ 4 ]',
 'Nombre De Saisons En L1']

6️⃣ Finalize the table

data_participants.columns = columns_participants[1:]
data_participants.head()
Dernière Montée Budget [ 3 ] En M € Classement 2018-2019 Entraîneur Depuis Stade Capacité En L1 [ 4 ] Nombre De Saisons En L1
Paris Saint-Germain 1974 637 1er Thomas Tuchel 2018 Parc des Princes 47 929 46
LOSC Lille 2000 120 2e Christophe Galtier 2017 Stade Pierre-Mauroy 49 712 59
Olympique lyonnais 1989 310 3e Rudi Garcia 2019 Groupama Stadium 57 206 60
AS Saint-Étienne 2004 100 4e Claude Puel 2019 Stade Geoffroy-Guichard 41 965 66
Olympique de Marseille 1996 110 5e André Villas-Boas 2019 Orange Vélodrome 66 226 69

5 Going Further

5.1 Retrieving stadium Locations

Try to understand step by step what is done in the following steps (retrieving additional information by navigating through the pages of the different clubs).

import requests
import bs4
import pandas as pd


def retrieve_page(url: str) -> bs4.BeautifulSoup:
    """
    Retrieves and parses a webpage using BeautifulSoup.

    Args:
        url (str): The URL of the webpage to retrieve.

    Returns:
        bs4.BeautifulSoup: The parsed HTML content of the page.
    """
    r = requests.get(url)
    page = bs4.BeautifulSoup(r.content, 'html.parser')
    return page


def extract_team_name_url(team: bs4.element.Tag) -> dict:
    """
    Extracts the team name and its corresponding Wikipedia URL.

    Args:
        team (bs4.element.Tag): The BeautifulSoup tag containing the team information.

    Returns:
        dict: A dictionary with the team name as the key and the Wikipedia URL as the value, or None if not found.
    """
    try:
        team_url = team.find('a').get('href')
        equipe = team.find('a').get('title')
        url_get_info = f"http://fr.wikipedia.org{team_url}"
        print(f"Retrieving information for {equipe}")
        return {equipe: url_get_info}
    except AttributeError:
        print(f"No <a> tag for \"{team}\"")
        return None


def explore_team_page(wikipedia_team_url: str) -> bs4.BeautifulSoup:
    """
    Retrieves and parses a team's Wikipedia page.

    Args:
        wikipedia_team_url (str): The URL of the team's Wikipedia page.

    Returns:
        bs4.BeautifulSoup: The parsed HTML content of the team's Wikipedia page.
    """
    r = requests.get(wikipedia_team_url)
    page = bs4.BeautifulSoup(r.content, 'html.parser')
    return page


def extract_stadium_info(search_team: bs4.BeautifulSoup) -> tuple:
    """
    Extracts stadium information from a team's Wikipedia page.

    Args:
        search_team (bs4.BeautifulSoup): The parsed HTML content of the team's Wikipedia page.

    Returns:
        tuple: A tuple containing the stadium name, latitude, and longitude, or (None, None, None) if not found.
    """
    for stadium in search_team.findAll('tr'):
        try:
            header = stadium.find('th', {'scope': 'row'})
            if header and header.contents[0].string == "Stade":
                name_stadium, url_get_stade = extract_stadium_name_url(stadium)
                if name_stadium and url_get_stade:
                    latitude, longitude = extract_stadium_coordinates(url_get_stade)
                    return name_stadium, latitude, longitude
        except (AttributeError, IndexError) as e:
            print(f"Error processing stadium information: {e}")
    return None, None, None


def extract_stadium_name_url(stadium: bs4.element.Tag) -> tuple:
    """
    Extracts the stadium name and URL from a stadium element.

    Args:
        stadium (bs4.element.Tag): The BeautifulSoup tag containing the stadium information.

    Returns:
        tuple: A tuple containing the stadium name and its Wikipedia URL, or (None, None) if not found.
    """
    try:
        url_stade = stadium.findAll('a')[1].get('href')
        name_stadium = stadium.findAll('a')[1].get('title')
        url_get_stade = f"http://fr.wikipedia.org{url_stade}"
        return name_stadium, url_get_stade
    except (AttributeError, IndexError) as e:
        print(f"Error extracting stadium name and URL: {e}")
        return None, None


def extract_stadium_coordinates(url_get_stade: str) -> tuple:
    """
    Extracts the coordinates of a stadium from its Wikipedia page.

    Args:
        url_get_stade (str): The URL of the stadium's Wikipedia page.

    Returns:
        tuple: A tuple containing the latitude and longitude of the stadium, or (None, None) if not found.
    """
    try:
        soup_stade = retrieve_page(url_get_stade)
        kartographer = soup_stade.find('a', {'class': "mw-kartographer-maplink"})
        if kartographer:
            coordinates = kartographer.get('data-lat') + "," + kartographer.get('data-lon')
            latitude, longitude = coordinates.split(",")
            return latitude.strip(), longitude.strip()
        else:
            return None, None
    except Exception as e:
        print(f"Error extracting stadium coordinates: {e}")
        return None, None


def extract_team_info(url_team_tag: bs4.element.Tag, division: str) -> dict:
    """
    Extracts information about a team, including its stadium and coordinates.

    Args:
        url_team_tag (bs4.element.Tag): The BeautifulSoup tag containing the team information.
        division (str): Team league

    Returns:
        dict: A dictionary with details about the team, including its division, name, stadium, latitude, and longitude.
    """

    team_info = extract_team_name_url(url_team_tag)
    url_team_wikipedia = next(iter(team_info.values()))
    name_team = next(iter(team_info.keys()))
    search_team = explore_team_page(url_team_wikipedia)
    name_stadium, latitude, longitude = extract_stadium_info(search_team)
    dict_stadium_team = {
        'division': division,
        'equipe': name_team,
        'stade': name_stadium,
        'latitude': latitude,
        'longitude': longitude
    }
    return dict_stadium_team


def retrieve_all_stadium_from_league(url_list: dict, division: str = "L1") -> pd.DataFrame:
    """
    Retrieves information about all stadiums in a league.

    Args:
        url_list (dict): A dictionary mapping divisions to their Wikipedia URLs.
        division (str): The division for which to retrieve stadium information.

    Returns:
        pd.DataFrame: A DataFrame containing information about the stadiums in the specified division.
    """
    page = retrieve_page(url_list[division])
    teams = page.findAll('span', {'class': 'toponyme'})
    all_info = []

    for team in teams:
        all_info.append(extract_team_info(team, division))

    stadium_df = pd.DataFrame(all_info)
    return stadium_df


# URLs for different divisions
url_list = {
    "L1": "http://fr.wikipedia.org/wiki/Championnat_de_France_de_football_2019-2020",
    "L2": "http://fr.wikipedia.org/wiki/Championnat_de_France_de_football_de_Ligue_2_2019-2020"
}

# Retrieve stadiums information for Ligue 1
stades_ligue1 = retrieve_all_stadium_from_league(url_list, "L1")
stades_ligue2 = retrieve_all_stadium_from_league(url_list, "L2")

stades = pd.concat(
    [stades_ligue1, stades_ligue2]
)
stades.head(5)
division equipe stade latitude longitude
0 L1 Paris Saint-Germain Football Club Parc des Princes 48.8413634 2.2530693
1 L1 LOSC Lille Stade Pierre-Mauroy 50.611962 3.130631
2 L1 Olympique lyonnais Parc Olympique lyonnais 45.7652477 4.9818707
3 L1 Association sportive de Saint-Étienne Stade Geoffroy-Guichard 45.460856 4.390344
4 L1 Olympique de Marseille Stade Vélodrome 43.269806 5.395922

At this stage, everything is in place to create a beautiful map. We will use folium for this, which is introduced in the visualization section.

5.2 Stadium Map with folium

import geopandas as gpd
import folium

stades = stades.dropna(subset = ['latitude', 'longitude'])
stades.loc[:, ['latitude', 'longitude']] = (
    stades
    .loc[:, ['latitude', 'longitude']]
    .astype(float)
)
stadium_locations = gpd.GeoDataFrame(
    stades, geometry = gpd.points_from_xy(stades.longitude, stades.latitude)
)

center = stadium_locations[['latitude', 'longitude']].mean().values.tolist()
sw = stadium_locations[['latitude', 'longitude']].min().values.tolist()
ne = stadium_locations[['latitude', 'longitude']].max().values.tolist()

m = folium.Map(location = center, tiles='openstreetmap')

# I can add marker one by one on the map
for i in range(0,len(stadium_locations)):
    folium.Marker(
        [stadium_locations.iloc[i]['latitude'], stadium_locations.iloc[i]['longitude']],
        popup=stadium_locations.iloc[i]['stade']
    ).add_to(m)

m.fit_bounds([sw, ne])

The resulting map should look like the following:

Make this Notebook Trusted to load map: File -> Trust Notebook

6 Retrieving Information on Pokémon

The next exercise to practice web scraping involves retrieving information on Pokémon from the website pokemondb.net.

6.1 Unguided Version

Important

When using request, you should add a parameter to control for the user-agent used by Python

requests.get(... , headers = {'User-Agent': 'Mozilla/5.0'})
Exercise 2: Pokémon (Unguided Version)

For this exercise, we ask you to obtain various information about Pokémon:

  1. The personal information of the 893 Pokémon on the website pokemondb.net. The information we would like to ultimately obtain in a DataFrame is contained in 4 tables:

    • Pokédex data
    • Training
    • Breeding
    • Base stats
  2. We would also like you to retrieve images of each Pokémon and save them in a folder.

  • A small hint: use the request and shutil modules.
  • For this question, you will need to research some elements on your own; not everything is covered in the lab.

For question 1, the goal is to obtain the source code of a table like the one below (Pokémon Nincada).

Pokédex data

National № 290
Type Bug Ground
Species Trainee Pokémon
Height 0.5 m (1′08″)
Weight 5.5 kg (12.1 lbs)
Abilities 1. Compound Eyes
Run Away (hidden ability)
Local № 042 (Ruby/Sapphire/Emerald)
111 (X/Y — Central Kalos)
043 (Omega Ruby/Alpha Sapphire)
104 (Sword/Shield)

Training

EV yield 1 Defense
Catch rate 255 (33.3% with PokéBall, full HP)
Base Friendship 70 (normal)
Base Exp. 53
Growth Rate Erratic

Breeding

Egg Groups Bug
Gender 50% male, 50% female
Egg cycles 15 (3,599–3,855 steps)

Base stats

HP 31
172 266
Attack 45
85 207
Defense 90
166 306
Sp. Atk 30
58 174
Sp. Def 30
58 174
Speed 40
76 196
Total 266 Min Max

For question 2, the goal is to obtain images of the Pokémon.

6.2 Guided Version

The following sections will help you complete the above exercise step by step, in a guided manner.

First, we want to obtain the personal information of all the Pokémon on pokemondb.net.

The information we would like to ultimately obtain for the Pokémon is contained in 4 tables:

  • Pokédex data
  • Training
  • Breeding
  • Base stats

Next, we will retrieve and display the images.

6.2.1 Step 1: Create a DataFrame of Characteristics

Exercise 2b: Pokémon (guided version)

To retrieve the information, the code will need to be divided into several steps:

  1. Find the main page of the site and transform it into an intelligible object for your code. The following functions will be useful:

    • urllib.request.Request
    • urllib.request.urlopen
    • bs4.BeautifulSoup
  2. Create a function that retrieves a Pokémon’s page based on its name.

  3. From the bulbasaur page, obtain the 4 tables we are interested in:

    • We will look for the following element: ('table', { 'class' : "vitals-table"})
    • Then store its elements in a dictionary
  4. Additionally, retrieve the list of Pokémon names that will allow us to loop through later. How many Pokémon do you find?

  5. Write a function that retrieves all the information on the first ten Pokémon in the list and integrates it into a DataFrame.

At the end of question 3, you should obtain a list of characteristics similar to this one:

{'National №': '0001',
 'name': 'bulbasaur',
 'Type': ' Grass Poison ',
 'Species': 'Seed Pokémon',
 'Height': '0.7\xa0m (2′04″)',
 'Weight': '6.9\xa0kg (15.2\xa0lbs)',
 'Abilities': '1. OvergrowChlorophyll (hidden ability)',
 'Local №': "0001 (Red/Blue/Yellow)0226 (Gold/Silver/Crystal)0001 (FireRed/LeafGreen)0231 (HeartGold/SoulSilver)0080 (X/Y — Central Kalos)0001 (Let's Go Pikachu/Let's Go Eevee)0068 (The Isle of Armor)0164 (The Indigo Disk)",
 'EV yield': ' 1 Sp. Atk',
 'Catch rate': ' 45 (5.9% with PokéBall, full HP) ',
 'Base Friendship': ' 50 (normal) ',
 'Base Exp.': '64',
 'Growth Rate': 'Medium Slow',
 'Egg Groups': 'Grass, Monster',
 'Gender': '87.5% male, 12.5% female',
 'Egg cycles': '20(4,884–5,140 steps) ',
 'HP': '45',
 'Attack': '49',
 'Defense': '49',
 'Sp. Atk': '65',
 'Sp. Def': '65',
 'Speed': '45'}

The structure here is a dictionary, which is convenient.

Finally, you can integrate the information of the first ten Pokémon into a DataFrame, which will look like this:

National № name Type Species Height Weight Abilities Local № EV yield Catch rate ... Growth Rate Egg Groups Gender Egg cycles HP Attack Defense Sp. Atk Sp. Def Speed
0 0001 bulbasaur Grass Poison Seed Pokémon 0.7 m (2′04″) 6.9 kg (15.2 lbs) 1. OvergrowChlorophyll (hidden ability) 0001 (Red/Blue/Yellow)0226 (Gold/Silver/Crysta... 1 Sp. Atk 45 (5.9% with PokéBall, full HP) ... Medium Slow Grass, Monster 87.5% male, 12.5% female 20(4,884–5,140 steps) 45 49 49 65 65 45
1 0002 ivysaur Grass Poison Seed Pokémon 1.0 m (3′03″) 13.0 kg (28.7 lbs) 1. OvergrowChlorophyll (hidden ability) 0002 (Red/Blue/Yellow)0227 (Gold/Silver/Crysta... 1 Sp. Atk, 1 Sp. Def 45 (5.9% with PokéBall, full HP) ... Medium Slow Grass, Monster 87.5% male, 12.5% female 20(4,884–5,140 steps) 60 62 63 80 80 60
2 0003 venusaur Grass Poison Seed Pokémon 2.0 m (6′07″) 100.0 kg (220.5 lbs) 1. OvergrowChlorophyll (hidden ability) 0003 (Red/Blue/Yellow)0228 (Gold/Silver/Crysta... 2 Sp. Atk, 1 Sp. Def 45 (5.9% with PokéBall, full HP) ... Medium Slow Grass, Monster 87.5% male, 12.5% female 20(4,884–5,140 steps) 80 82 83 100 100 80
3 0004 charmander Fire Lizard Pokémon 0.6 m (2′00″) 8.5 kg (18.7 lbs) 1. BlazeSolar Power (hidden ability) 0004 (Red/Blue/Yellow)0229 (Gold/Silver/Crysta... 1 Speed 45 (5.9% with PokéBall, full HP) ... Medium Slow Dragon, Monster 87.5% male, 12.5% female 20(4,884–5,140 steps) 39 52 43 60 50 65
4 0005 charmeleon Fire Flame Pokémon 1.1 m (3′07″) 19.0 kg (41.9 lbs) 1. BlazeSolar Power (hidden ability) 0005 (Red/Blue/Yellow)0230 (Gold/Silver/Crysta... 1 Sp. Atk, 1 Speed 45 (5.9% with PokéBall, full HP) ... Medium Slow Dragon, Monster 87.5% male, 12.5% female 20(4,884–5,140 steps) 58 64 58 80 65 80

5 rows × 22 columns

6.2.2 Step 2: Retrieve and Display Pokémon Photos

We would also like you to retrieve the images of the first 5 Pokémon and save them in a folder.

Exercise 2b: Pokémon (Guided Version)
  • The URLs of Pokémon images take the form “https://img.pokemondb.net/artwork/{pokemon}.jpg”. Use the requests and shutil modules to download and save the images locally.
  • Import these images stored in JPEG format into Python using the imread function from the skimage.io package.
!pip install scikit-image
Requirement already satisfied: scikit-image in /opt/conda/lib/python3.12/site-packages (0.24.0)
Requirement already satisfied: numpy>=1.23 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (2.2.3)
Requirement already satisfied: scipy>=1.9 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (1.13.0)
Requirement already satisfied: networkx>=2.8 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (3.4.2)
Requirement already satisfied: pillow>=9.1 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (11.1.0)
Requirement already satisfied: imageio>=2.33 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (2.37.0)
Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (2025.3.13)
Requirement already satisfied: packaging>=21 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (24.2)
Requirement already satisfied: lazy-loader>=0.4 in /opt/conda/lib/python3.12/site-packages (from scikit-image) (0.4)
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable.It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.

7 Selenium : mimer le comportement d’un utilisateur internet

Until now, we have assumed that we always know the URL we are interested in. Additionally, the pages we visit are “static”, they do not depend on any action or search by the user.

We will now see how to fill in fields on a website and retrieve the information we are interested in. The reaction of a website to a user’s action often involves the use of JavaScript in the world of web development. The Selenium package allows you to automate the behavior of a manual user from within your code. It enables you to obtain information from a site that is not in the HTML code but only appears after the execution of JavaScript scripts in the background.

Selenium behaves like a regular internet user: it clicks on links, fills out forms, etc.

7.1 First Example: Scraping a Search Engine

In this example, we will try to go to the Bing News site and enter a given topic in the search bar. To test, we will search with the keyword “Trump”.

Installing Selenium requires Chromium, which is a minimalist version of the Google Chrome browser. The version of chromedriver must be >= 2.36 and depends on the version of Chrome you have on your working environment. To install this minimalist version of Chrome on a Linux environment, you can refer to the dedicated section.

Installation de Selenium

On Colab, you can use the following commands:

!sudo apt-get update
!sudo apt install -y unzip xvfb libxi6 libgconf-2-4 -y
!sudo apt install chromium-chromedriver -y
!cp /usr/lib/chromium-browser/chromedriver /usr/bin


If you are on the SSP Cloud, you can run the following commands:

!wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/chrome.deb
!sudo apt-get update
!sudo -E apt-get install -y /tmp/chrome.deb
!pip install chromedriver-autoinstaller selenium

import chromedriver_autoinstaller
path_to_web_driver = chromedriver_autoinstaller.install()


You can then install Selenium. For example, from a Notebook cell:

First, you need to initialize the behavior of Selenium by replicating the browser settings. To do this, we will first initialize our browser with a few options:

import time

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--disable-dev-shm-usage')
#chrome_options.add_argument('--verbose')

Then we launch the browser:

from selenium.webdriver.chrome.service import Service
service = Service(executable_path=path_to_web_driver)

browser = webdriver.Chrome(service=service,
                           options=chrome_options)

We go to the Bing News site, and we specify the keyword we want to search for. In this case, we’re interested in news about Donald Trump. After inspecting the page using the browser’s developer tools, we see that the search bar is an element in the code called q (as in query). So we’ll ask selenium to search for this element:

browser.get('https://www.bing.com/news')

search = browser.find_element("name", "q")
print(search)
print([search.text, search.tag_name, search.id])

# on envoie à cet endroit le mot qu'on aurait tapé dans la barre de recherche
search.send_keys("Trump")

search_button = browser.find_element("xpath", "//input[@id='sb_form_go']")
search_button.click()

Selenium allows you to capture the image you would see in the browser with get_screenshot_as_png. This can be useful to check if you have performed the correct action:

Finally, we can extract the results. Several methods are available. The most convenient method, when available, is to use XPath, which is an unambiguous path to access an element. Indeed, multiple elements can share the same class or the same attribute, which can cause such a search to return multiple matches. To determine the XPath of an object, the developer tools of your web browser are handy. For example, in Firefox, once you have found an element in the inspector, you can right-click > Copy > XPath.

Finally, to end our session, we ask Python to close the browser:

browser.quit()

We get the following results:

['https://www.bostonglobe.com/2025/03/19/nation/supreme-court-birthright-citizenship-explainer/', 'https://www.msn.com/en-us/money/careersandeducation/student-loan-borrowers-see-payments-soar-after-trumps-changes/ar-AA1Bgi73?ocid=BingNewsVerp', 'https://www.newsweek.com/was-nbc-camera-removed-trump-meeting-what-we-know-2046368', 'https://www.msn.com/en-us/news/politics/trump-wants-to-impeach-judges-who-defy-him-but-it-won-t-happen/ar-AA1BfqJ9?ocid=BingNewsVerp', 'https://www.msn.com/en-us/news/politics/donald-trumps-approval-rating-is-falling-faster-with-men-than-women/ar-AA1BfYUN?ocid=BingNewsVerp', 'https://www.msn.com/en-us/sports/nba/trump-pauses-175-million-in-funding-to-penn-over-trans-swimmer/ar-AA1Bg2xO?ocid=BingNewsVerp', 'https://www.nytimes.com/2025/03/19/world/europe/zelensky-trump-ukraine-russia-putin.html', 'https://www.nytimes.com/2025/03/19/business/trump-tariffs-economy.html', 'https://www.pressdemocrat.com/article/trending/trump-administration-suspends-175-million-in-federal-funding-for-penn-over/', 'https://www.msn.com/en-us/news/world/trump-aides-circulate-plan-for-complete-revamp-of-foreign-aid-programs/ar-AA1Bg1kq?ocid=BingNewsVerp', 'https://www.nytimes.com/2025/03/19/world/canada/canada-eu-military-industry-trump.html', 'https://www.msn.com/en-us/news/politics/trump-told-zelensky-he-wants-us-to-help-run-ukraine-power-plants/ar-AA1BfK7y?ocid=BingNewsVerp']

Other useful Selenium methods:

Method Result
find_element(****).click() Once you have found a reactive element, such as a button, you can click on it to navigate to a new page
find_element(****).send_keys("toto") Once you have found an element, such as a field to enter credentials, you can send a value, in this case “toto”.

7.2 Additional Exercise

To explore another application of web scraping, you can also tackle topic 5 of the 2023 edition of a non-competitive hackathon organized by Insee:

The NLP section of the course may be useful for the second part of the topic!

Informations additionnelles

environment files have been tested on.

Latest built version: 2025-03-19

Python version used:

'3.12.6 | packaged by conda-forge | (main, Sep 30 2024, 18:08:52) [GCC 13.3.0]'
Package Version
affine 2.4.0
aiobotocore 2.21.1
aiohappyeyeballs 2.6.1
aiohttp 3.11.13
aioitertools 0.12.0
aiosignal 1.3.2
alembic 1.13.3
altair 5.4.1
aniso8601 9.0.1
annotated-types 0.7.0
anyio 4.8.0
appdirs 1.4.4
archspec 0.2.3
asttokens 2.4.1
attrs 25.3.0
babel 2.17.0
bcrypt 4.2.0
beautifulsoup4 4.12.3
black 24.8.0
blinker 1.8.2
blis 1.2.0
bokeh 3.5.2
boltons 24.0.0
boto3 1.37.1
botocore 1.37.1
branca 0.7.2
Brotli 1.1.0
bs4 0.0.2
cachetools 5.5.0
cartiflette 0.0.2
Cartopy 0.24.1
catalogue 2.0.10
cattrs 24.1.2
certifi 2025.1.31
cffi 1.17.1
charset-normalizer 3.4.1
chromedriver-autoinstaller 0.6.4
click 8.1.8
click-plugins 1.1.1
cligj 0.7.2
cloudpathlib 0.21.0
cloudpickle 3.0.0
colorama 0.4.6
comm 0.2.2
commonmark 0.9.1
conda 24.9.1
conda-libmamba-solver 24.7.0
conda-package-handling 2.3.0
conda_package_streaming 0.10.0
confection 0.1.5
contextily 1.6.2
contourpy 1.3.1
cryptography 43.0.1
cycler 0.12.1
cymem 2.0.11
cytoolz 1.0.0
dask 2024.9.1
dask-expr 1.1.15
databricks-sdk 0.33.0
dataclasses-json 0.6.7
debugpy 1.8.6
decorator 5.1.1
Deprecated 1.2.14
diskcache 5.6.3
distributed 2024.9.1
distro 1.9.0
docker 7.1.0
duckdb 1.2.1
en_core_web_sm 3.8.0
entrypoints 0.4
et_xmlfile 2.0.0
exceptiongroup 1.2.2
executing 2.1.0
fastexcel 0.11.6
fastjsonschema 2.21.1
fiona 1.10.1
Flask 3.0.3
folium 0.17.0
fontawesomefree 6.6.0
fonttools 4.56.0
fr_core_news_sm 3.8.0
frozendict 2.4.4
frozenlist 1.5.0
fsspec 2023.12.2
geographiclib 2.0
geopandas 1.0.1
geoplot 0.5.1
geopy 2.4.1
gitdb 4.0.11
GitPython 3.1.43
google-auth 2.35.0
graphene 3.3
graphql-core 3.2.4
graphql-relay 3.2.0
graphviz 0.20.3
great-tables 0.12.0
greenlet 3.1.1
gunicorn 22.0.0
h11 0.14.0
h2 4.1.0
hpack 4.0.0
htmltools 0.6.0
httpcore 1.0.7
httpx 0.28.1
httpx-sse 0.4.0
hyperframe 6.0.1
idna 3.10
imageio 2.37.0
importlib_metadata 8.6.1
importlib_resources 6.5.2
inflate64 1.0.1
ipykernel 6.29.5
ipython 8.28.0
itsdangerous 2.2.0
jedi 0.19.1
Jinja2 3.1.6
jmespath 1.0.1
joblib 1.4.2
jsonpatch 1.33
jsonpointer 3.0.0
jsonschema 4.23.0
jsonschema-specifications 2024.10.1
jupyter-cache 1.0.0
jupyter_client 8.6.3
jupyter_core 5.7.2
kaleido 0.2.1
kiwisolver 1.4.8
langchain 0.3.20
langchain-community 0.3.9
langchain-core 0.3.45
langchain-text-splitters 0.3.6
langcodes 3.5.0
langsmith 0.1.147
language_data 1.3.0
lazy_loader 0.4
libmambapy 1.5.9
locket 1.0.0
loguru 0.7.3
lxml 5.3.1
lz4 4.3.3
Mako 1.3.5
mamba 1.5.9
mapclassify 2.8.1
marisa-trie 1.2.1
Markdown 3.6
markdown-it-py 3.0.0
MarkupSafe 3.0.2
marshmallow 3.26.1
matplotlib 3.10.1
matplotlib-inline 0.1.7
mdurl 0.1.2
menuinst 2.1.2
mercantile 1.2.1
mizani 0.11.4
mlflow 2.16.2
mlflow-skinny 2.16.2
msgpack 1.1.0
multidict 6.1.0
multivolumefile 0.2.3
munkres 1.1.4
murmurhash 1.0.12
mypy-extensions 1.0.0
narwhals 1.30.0
nbclient 0.10.0
nbformat 5.10.4
nest_asyncio 1.6.0
networkx 3.4.2
nltk 3.9.1
numpy 2.2.3
opencv-python-headless 4.10.0.84
openpyxl 3.1.5
opentelemetry-api 1.16.0
opentelemetry-sdk 1.16.0
opentelemetry-semantic-conventions 0.37b0
orjson 3.10.15
outcome 1.3.0.post0
OWSLib 0.28.1
packaging 24.2
pandas 2.2.3
paramiko 3.5.0
parso 0.8.4
partd 1.4.2
pathspec 0.12.1
patsy 1.0.1
Pebble 5.1.0
pexpect 4.9.0
pickleshare 0.7.5
pillow 11.1.0
pip 24.2
platformdirs 4.3.6
plotly 5.24.1
plotnine 0.13.6
pluggy 1.5.0
polars 1.8.2
preshed 3.0.9
prometheus_client 0.21.0
prometheus_flask_exporter 0.23.1
prompt_toolkit 3.0.48
propcache 0.3.0
protobuf 4.25.3
psutil 7.0.0
ptyprocess 0.7.0
pure_eval 0.2.3
py7zr 0.20.8
pyarrow 17.0.0
pyarrow-hotfix 0.6
pyasn1 0.6.1
pyasn1_modules 0.4.1
pybcj 1.0.3
pycosat 0.6.6
pycparser 2.22
pycryptodomex 3.21.0
pydantic 2.10.6
pydantic_core 2.27.2
pydantic-settings 2.8.1
Pygments 2.19.1
PyNaCl 1.5.0
pynsee 0.1.8
pyogrio 0.10.0
pyOpenSSL 24.2.1
pyparsing 3.2.1
pyppmd 1.1.1
pyproj 3.7.1
pyshp 2.3.1
PySocks 1.7.1
python-dateutil 2.9.0.post0
python-dotenv 1.0.1
python-magic 0.4.27
pytz 2025.1
pyu2f 0.1.5
pywaffle 1.1.1
PyYAML 6.0.2
pyzmq 26.3.0
pyzstd 0.16.2
querystring_parser 1.2.4
rasterio 1.4.3
referencing 0.36.2
regex 2024.9.11
requests 2.32.3
requests-cache 1.2.1
requests-toolbelt 1.0.0
retrying 1.3.4
rich 13.9.4
rpds-py 0.23.1
rsa 4.9
rtree 1.4.0
ruamel.yaml 0.18.6
ruamel.yaml.clib 0.2.8
s3fs 2023.12.2
s3transfer 0.11.3
scikit-image 0.24.0
scikit-learn 1.6.1
scipy 1.13.0
seaborn 0.13.2
selenium 4.29.0
setuptools 76.0.0
shapely 2.0.7
shellingham 1.5.4
six 1.17.0
smart-open 7.1.0
smmap 5.0.0
sniffio 1.3.1
sortedcontainers 2.4.0
soupsieve 2.5
spacy 3.8.4
spacy-legacy 3.0.12
spacy-loggers 1.0.5
SQLAlchemy 2.0.39
sqlparse 0.5.1
srsly 2.5.1
stack-data 0.6.2
statsmodels 0.14.4
tabulate 0.9.0
tblib 3.0.0
tenacity 9.0.0
texttable 1.7.0
thinc 8.3.4
threadpoolctl 3.6.0
tifffile 2025.3.13
toolz 1.0.0
topojson 1.9
tornado 6.4.2
tqdm 4.67.1
traitlets 5.14.3
trio 0.29.0
trio-websocket 0.12.2
truststore 0.9.2
typer 0.15.2
typing_extensions 4.12.2
typing-inspect 0.9.0
tzdata 2025.1
Unidecode 1.3.8
url-normalize 1.4.3
urllib3 1.26.20
uv 0.6.8
wasabi 1.1.3
wcwidth 0.2.13
weasel 0.4.1
webdriver-manager 4.0.2
websocket-client 1.8.0
Werkzeug 3.0.4
wheel 0.44.0
wordcloud 1.9.3
wrapt 1.17.2
wsproto 1.2.0
xgboost 2.1.1
xlrd 2.0.1
xyzservices 2025.1.0
yarl 1.18.3
yellowbrick 1.5
zict 3.0.0
zipp 3.21.0
zstandard 0.23.0

View file history

SHA Date Author Description
3f1d2f3f 2025-03-15 15:55:59 Lino Galiana Fix problem with uv and malformed files (#599)
2f96f636 2025-01-29 19:49:36 Lino Galiana Tweak callout for colab engine (#591)
e8beceb7 2024-12-11 11:33:21 Romain Avouac fix(selenium): chromedriver path (#581)
ddc423f1 2024-11-12 10:26:14 lgaliana Quarto rendering
9d8e69c3 2024-10-21 17:10:03 lgaliana update badges shortcode for all manipulation part
4be74ea8 2024-08-21 17:32:34 Lino Galiana Fix a few buggy notebooks (#544)
40446fa3 2024-08-21 13:17:17 Lino Galiana solve pb (#543)
f7d7c83b 2024-08-21 09:33:26 linogaliana solve problem with webscraping chapter
1953609d 2024-08-12 16:18:19 linogaliana One button is enough
64262ca1 2024-08-12 17:06:18 Lino Galiana Traduction partie webscraping (#541)
101465fb 2024-08-07 13:56:35 Lino Galiana regex, webscraping and API chapters in 🇬🇧 (#532)
065b0abd 2024-07-08 11:19:43 Lino Galiana Nouveaux callout dans la partie manipulation (#513)
06d003a1 2024-04-23 10:09:22 Lino Galiana Continue la restructuration des sous-parties (#492)
005d89b8 2023-12-20 17:23:04 Lino Galiana Finalise l’affichage des statistiques Git (#478)
3fba6124 2023-12-17 18:16:42 Lino Galiana Remove some badges from python (#476)
4cd44f35 2023-12-11 17:37:50 Antoine Palazzolo Relecture NLP (#474)
a06a2689 2023-11-23 18:23:28 Antoine Palazzolo 2ème relectures chapitres ML (#457)
889a71ba 2023-11-10 11:40:51 Antoine Palazzolo Modification TP 3 (#443)
762f85a8 2023-10-23 18:12:15 Lino Galiana Mise en forme du TP webscraping (#441)
8071bbb1 2023-10-23 17:43:37 tomseimandi Make minor changes to 02b, 03, 04a (#440)
3eb0aeb1 2023-10-23 11:59:24 Thomas Faria Relecture jusqu’aux API (#439)
102ce9fd 2023-10-22 11:39:37 Thomas Faria Relecture Thomas, première partie (#438)
fbbf066a 2023-10-16 14:57:03 Antoine Palazzolo Correction TP scraping (#435)
a7711832 2023-10-09 11:27:45 Antoine Palazzolo Relecture TD2 par Antoine (#418)
154f09e4 2023-09-26 14:59:11 Antoine Palazzolo Des typos corrigées par Antoine (#411)
b7f4d7ea 2023-09-17 17:03:14 Antoine Palazzolo Renvoi vers sujet funathon pour partie scraping (#404)
9a4e2267 2023-08-28 17:11:52 Lino Galiana Action to check URL still exist (#399)
8baf507b 2023-08-28 11:09:30 Lino Galiana Lien mort formation webscraping
a8f90c2f 2023-08-28 09:26:12 Lino Galiana Update featured paths (#396)
3bdf3b06 2023-08-25 11:23:02 Lino Galiana Simplification de la structure 🤓 (#393)
30823c40 2023-08-24 14:30:55 Lino Galiana Liens morts navbar (#392)
3560f1f8 2023-07-21 17:04:56 Lino Galiana Build on smaller sized image (#384)
130ed717 2023-07-18 19:37:11 Lino Galiana Restructure les titres (#374)
ef28fefd 2023-07-07 08:14:42 Lino Galiana Listing pour la première partie (#369)
f21a24d3 2023-07-02 10:58:15 Lino Galiana Pipeline Quarto & Pages 🚀 (#365)
38693f62 2023-04-19 17:22:36 Lino Galiana Rebuild visualisation part (#357)
32486330 2023-02-18 13:11:52 Lino Galiana Shortcode rawhtml (#354)
3c880d59 2022-12-27 17:34:59 Lino Galiana Chapitre regex + Change les boites dans plusieurs chapitres (#339)
938f9bcb 2022-12-04 15:28:37 Lino Galiana Test selenium en intégration continue (#331)
342b59b6 2022-12-04 11:55:00 Romain Avouac Procedure to install selenium on ssp cloud (#330)
037842a9 2022-11-22 17:52:25 Lino Galiana Webscraping exercice nom et age ministres (#326)
738c0744 2022-11-17 12:23:29 Lino Galiana Nettoie le TP scraping (#323)
f5f0f9c4 2022-11-02 19:19:07 Lino Galiana Relecture début partie modélisation KA (#318)
43a863f1 2022-09-27 11:14:18 Lino Galiana Change notebook url (#283)
25046de4 2022-09-26 18:08:19 Lino Galiana Rectifie bug TP webscraping (#281)
494a85ae 2022-08-05 14:49:56 Lino Galiana Images featured ✨ (#252)
d201e3cd 2022-08-03 15:50:34 Lino Galiana Pimp la homepage ✨ (#249)
bb38643d 2022-06-08 16:59:40 Lino Galiana Répare bug leaflet (#234)
12965bac 2022-05-25 15:53:27 Lino Galiana :launch: Bascule vers quarto (#226)
9c71d6e7 2022-03-08 10:34:26 Lino Galiana Plus d’éléments sur S3 (#218)
66e2837c 2021-12-24 16:54:45 Lino Galiana Fix a few typos in the new pipeline tutorial (#208)
0e01c33f 2021-11-10 12:09:22 Lino Galiana Relecture @antuki API+Webscraping + Git (#178)
9a3f7ad8 2021-10-31 18:36:25 Lino Galiana Nettoyage partie API + Git (#170)
6777f038 2021-10-29 09:38:09 Lino Galiana Notebooks corrections (#171)
2a8809fb 2021-10-27 12:05:34 Lino Galiana Simplification des hooks pour gagner en flexibilité et clarté (#166)
b138cf3e 2021-10-21 18:05:59 Lino Galiana Mise à jour TP webscraping et API (#164)
2e4d5862 2021-09-02 12:03:39 Lino Galiana Simplify badges generation (#130)
80877d20 2021-06-28 11:34:24 Lino Galiana Ajout d’un exercice de NLP à partir openfood database (#98)
4cdb759c 2021-05-12 10:37:23 Lino Galiana :sparkles: :star2: Nouveau thème hugo :snake: :fire: (#105)
7f9f97bc 2021-04-30 21:44:04 Lino Galiana 🐳 + 🐍 New workflow (docker 🐳) and new dataset for modelization (2020 🇺🇸 elections) (#99)
6d010fa2 2020-09-29 18:45:34 Lino Galiana Simplifie l’arborescence du site, partie 1 (#57)
66f9f87a 2020-09-24 19:23:04 Lino Galiana Introduction des figures générées par python dans le site (#52)
5c1e76d9 2020-09-09 11:25:38 Lino Galiana Ajout des éléments webscraping, regex, API (#21)
Back to top

Citation

BibTeX citation:
@book{galiana2023,
  author = {Galiana, Lino},
  title = {Python Pour La Data Science},
  date = {2023},
  url = {https://pythonds.linogaliana.fr/},
  doi = {10.5281/zenodo.8229676},
  langid = {en}
}
For attribution, please cite this work as:
Galiana, Lino. 2023. Python Pour La Data Science. https://doi.org/10.5281/zenodo.8229676.