issue147:python
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
issue147:python [2019/08/06 08:51] – d52fr | issue147:python [2019/08/08 10:21] (Version actuelle) – andre_domenech | ||
---|---|---|---|
Ligne 17: | Ligne 17: | ||
I'm going to focus on two of the changes in this article. First, we'll take a look at the Assignment Expression change.** | I'm going to focus on two of the changes in this article. First, we'll take a look at the Assignment Expression change.** | ||
- | Il y a beaucoup de modifications dans le version 3.8.0, dont nous avons déjà vu l'une d' | + | Il y a beaucoup de modifications dans la version 3.8.0 et nous avons déjà vu l'une d' |
- | ••Expressions d' | + | ••Expressions d' |
••Protocole 5 de Pickle avec des données « out-of-band » - PEP 574 | ••Protocole 5 de Pickle avec des données « out-of-band » - PEP 574 | ||
- | ••Absences | + | ••Absence |
••Support pratique des f-strings = spécifieur pour le débogage (voir ci-dessous) | ••Support pratique des f-strings = spécifieur pour le débogage (voir ci-dessous) | ||
- | ••LOAD GLOBAL | + | ••LOAD_GLOBAL |
••pickle utilise maintenant le protocole 4 par défaut | ••pickle utilise maintenant le protocole 4 par défaut | ||
••En lien avec la saisie : | ••En lien avec la saisie : | ||
Ligne 29: | Ligne 29: | ||
PEP 589 (TypedDict) | PEP 589 (TypedDict) | ||
- | Je vais me concentrer sur deux types de modifications | + | Je vais me concentrer sur deux types de modification |
**In this change, there is an additional operator for us. It's called the " | **In this change, there is an additional operator for us. It's called the " | ||
Ligne 47: | Ligne 47: | ||
You can see that it saves us a line of code.** | You can see that it saves us a line of code.** | ||
- | Dans cette modification, | + | Dans cette modification, |
- | + | ||
- | Partons de l' | + | |
+ | Partons de l' | ||
n = len(lst) | n = len(lst) | ||
Ligne 56: | Ligne 55: | ||
print(' | print(' | ||
| | ||
- | Maintenant, nous utiliserons le nouvelle | + | Maintenant, nous utiliserons le nouvel |
if (n := len(lst)) > 10: | if (n := len(lst)) > 10: | ||
Ligne 80: | Ligne 79: | ||
Voyez ci-dessus un autre exemple, un peu plus « monde réel ». | Voyez ci-dessus un autre exemple, un peu plus « monde réel ». | ||
- | Ici, nous importons une bibliothèque json et créons une chaîne compatible avec json contenant un certain nombre d'entrée | + | Ici, nous importons une bibliothèque json et créons une chaîne compatible avec json contenant un certain nombre d'entrées |
l = locations[" | l = locations[" | ||
- | Ensuite (page suivante, en haut à droite), nous parcourons la liste, une entrée à la fois, et nous utilisons l' | + | Ensuite (page suivante, en haut à droite), nous parcourons la liste, une entrée à la fois, et nous utilisons l' |
- | La sortie de ce court programme serait... | + | La sortie de ce court programme serait |
Odessa, Texas, USA | Odessa, Texas, USA | ||
Ligne 107: | Ligne 106: | ||
print(" | print(" | ||
- | L' | + | L' |
- | Je part du principe que vous comprenez tous l' | + | Je pars du principe que vous comprenez tous l' |
- | Disons que vous voulez créer une chaîne pour l' | + | Disons que vous voulez créer une chaîne pour l' |
mag = "Full Circle Magazine" | mag = "Full Circle Magazine" | ||
Ligne 118: | Ligne 117: | ||
year = " | year = " | ||
- | Dans la méthodologie de format %, vous utiliserions... | + | Dans la méthodologie de format %, vous utiliserions |
- | print(" | + | print(" |
**Which would produce: | **Which would produce: | ||
Ligne 136: | Ligne 135: | ||
Ce qui produit : | Ce qui produit : | ||
- | Written for Full Circle Magazine | + | Écrit pour Full Circle Magazine |
Pour utiliser la méthode str.format(), | Pour utiliser la méthode str.format(), | ||
- | print(' | + | print(' |
- | qui fournit la même sortie. Notez que les accolades | + | qui fournit la même sortie. Notez que les accolades |
- | print(' | + | print(' |
Ligne 158: | Ligne 157: | ||
As you can see, it is much shorter (and readable), since we simply place an “f” before the opening quote and use the variable names within the curly brackets, forgetting about the ‘.format()’ porton.** | As you can see, it is much shorter (and readable), since we simply place an “f” before the opening quote and use the variable names within the curly brackets, forgetting about the ‘.format()’ porton.** | ||
+ | |||
+ | Encore une fois, cela produit la même sortie que les autres. Encore une façon différente de faire dans ce qui suit : | ||
+ | |||
+ | print(' | ||
+ | |||
+ | Cependant, ceci est un peu pataud, et comme vous pouvez le voir, rend longue la déclaration quand plusieurs variables/ | ||
+ | |||
+ | Maintenant, utilisons les f-strings. L' | ||
+ | |||
+ | print(f" | ||
+ | |||
+ | Comme vous pouvez le voir, c'est plus court (et lisible), car nous plaçons simplement un « f » avant les guillemets ouvrants et utilisons les noms de variables dans des accolades, oubliant la portion du « .format() ». | ||
**Now for the new part. Python 3.8 gives us the ability of using an ‘=’ sign. As I said above, this is mainly for debugging support. Assuming the variable assignments above, if we want to print the value of the mag variable, we could simply do it like this… | **Now for the new part. Python 3.8 gives us the ability of using an ‘=’ sign. As I said above, this is mainly for debugging support. Assuming the variable assignments above, if we want to print the value of the mag variable, we could simply do it like this… | ||
Ligne 176: | Ligne 187: | ||
This is so much easier to read in the debugging output in the terminal than just the previous output.** | This is so much easier to read in the debugging output in the terminal than just the previous output.** | ||
+ | |||
+ | Maintenant, pour la partie nouvelle, Python 3.8 nous donne la possibilité d' | ||
+ | |||
+ | print(mag) | ||
+ | |||
+ | Et, comme nous le savons tous, ça imprimera : | ||
+ | |||
+ | Full Circle Magazine | ||
+ | |||
+ | Mais, si nous utilisons la nouvelle option = fournie par Python 3.8, nous pouvons utiliser ce qui suit : | ||
+ | |||
+ | print(f" | ||
+ | |||
+ | Cela affichera : | ||
+ | |||
+ | mag=' | ||
+ | |||
+ | C'est tellement plus facile à lire en sortie de débogage sur le terminal que la seule sortie précédente. | ||
**There are so many new things that Python 3.8 offers us. While compiling Python on your own can be a challenge, there are many websites that offer step-by-step instructions to do this. Remember, however, this is a beta product, so there are bound to be issues. You might want to wait a few months until one of the release candidates become available. It would also be a good idea to create yourself some sort of virtual environment to support your 3.8 work without risking breaking anything you currently have. Consider it a “sandbox”. | **There are so many new things that Python 3.8 offers us. While compiling Python on your own can be a challenge, there are many websites that offer step-by-step instructions to do this. Remember, however, this is a beta product, so there are bound to be issues. You might want to wait a few months until one of the release candidates become available. It would also be a good idea to create yourself some sort of virtual environment to support your 3.8 work without risking breaking anything you currently have. Consider it a “sandbox”. | ||
Ligne 184: | Ligne 213: | ||
Until next time, happy coding! ** | Until next time, happy coding! ** | ||
+ | |||
+ | Il y a tant de choses nouvelles qui nous sont proposées par Python 3.8. Alors que la compilation de Python par vous-même peut s' | ||
+ | |||
+ | Pour une liste détaillée des fonctionnalités qui arrivent dans Python 3.8, voyez https:// | ||
+ | |||
+ | La publication de Python 3.8.0 est actuellement prévue le 21/10/19. | ||
+ | |||
+ | Jusqu' | ||
+ | |||
+ | |||
issue147/python.1565074297.txt.gz · Dernière modification : 2019/08/06 08:51 de d52fr