livre de recettes python Memo

Encodage URI

urllib.quote('Irohanihohe')
>Irohanihohe

Décodage URI

 urllib.unquote('Irohanihohe')
>Irohanihohe

fonction zip

sample = ['aaa', 'bbb']
sample2 = ['222', '333']

print zip(sample, sample2)
> [('aaa', '222'), ('bbb', '333')]

fonction énumérer

sample = ['aaa', 'bbb']

for num, sam in enumerate(sample):
	print num, sam
> 0 aaa
> 1 bbb

Recommended Posts

livre de recettes python Memo
Mémo Python
mémo python
Mémo Python
mémo python
Mémo Python
Mémo Python
"Python startbook" mémo compatible python3
mémo débutant python (9.2-10)
mémo débutant python (9.1)
★ Mémo ★ Python Iroha
[Python] Mémo EDA
Mémo opérateur Python 3
[Mon mémo] python
Mémo de métaclasse Python3
[Python] Mémo de fond de carte
Mémo débutant Python (2)
[Python] Mémo Numpy
Classe Python (mémo d'apprentissage Python ⑦)
installation de python openCV (mémo)
Module Python (mémo d'apprentissage Python ④)
Mémo de visualisation par Python
Mémo du package de test Python
[Python] Mémo sur les fonctions
Recherche de bisection (python2.7) mémo
[Mon mémo] python -v / python -V
Mémo de type Liste / Dictionnaire Python3
[Mémo] Tri de liste Python3
Astuces Python (mon mémo)
[Python] Mémo sur les erreurs
Mémo de base Python - Partie 2
Notes de commande de base Python
Mémo du didacticiel Python OpenCV
Mémo de grammaire de base Python
Mémo de l'API TensorFlow (Python)
liens de mémo utiles python
Mémo d'opération de décorateur Python
Mémo de base Python - Partie 1
Élément de mémo Python efficace 3
Mémo Python d'énumération approximative
Gestion des exceptions Python (mémo d'apprentissage Python ⑥)
Mémo de mesure du temps d'exécution Python
Mémo graphique Twitter avec Python
[Line / Python] Mémo d'implémentation Beacon
Mémo tranche python et rubis
Mémo de grammaire de base Python (1)
Mémo de code personnel Python
Mémo int de type immuable Python
mémo python utilisant perl --join
Mémo récapitulatif des types de données Python
Grammaire de base Python (divers) Mémo (2)
[MEMO] [Construction de l'environnement de développement] Python
[Python] mémo de procédure de création virtualenv
Grammaire de base Python (divers) Mémo (4)
Concernant l'accélération de python (Note)
Syntaxe de contrôle Python, fonctions (mémo d'apprentissage Python ②)
Mémo de construction de l'environnement Python sur Windows 10
Différence entre java et python (mémo)
[Python] Mémo d'opération de pandas DataFrame