Je l'écris beaucoup, mais pour une raison quelconque, je ne m'en souviens pas, alors j'ai rassemblé le code que je recherche sur Google à chaque fois.
Python
if __name__ == '__main__':
print('Hello World!')
import warnings
warnings.filterwarnings('ignore')
#sauvegarder
with open('list.txt', 'w') as f:
print(*list_obj, sep='\n', file=f)
#Lis
with open('list.txt') as f:
list_obj = f.read().splitlines()
# list_obj = list(map(lambda x: x.split(','), list_obj)) #Pour deux dimensions ou plus
list = [i for i in list if 'hogehoge' in i]
from tqdm import tqdm
# jupyter notebook
from tqdm import tqdm_notebook as tqdm
import pandas as pd
pd.set_option('display.max_rows', None)
import pandas as pd
pd.set_option('display.max_colwidth', 1000)
fig = plt.figure(figsize=(20, 10))
Bar Plot
plt.bar(df.index, df['value'], align='center')
plt.xticks(df.index, df.index)
t = 'abc/def'
print(t.split('/')[0]) # abc
print(t.split('/')[1]) # def
#S'il n'y a pas de caractère spécifié lors du mappage à la matrice, une erreur sera générée, il est donc recommandé de mapper avec la fonction suivante.
def pick_char(t):
try:
return t.split('/')[0]
except IndexError:
return t
df.map(pick_char)
t = '\n\t\r\u3000 abc \u3000\r\t\n'
print(t.strip()) # abc
$ pip install --no-cache-dir <Library>
Réinstaller avec -I
git
$ git rm -r --cached .
$ chown -R $USER <dir>
Je l'ajouterai dès que je rencontrerai une opération de chaîne de caractères pratique.
Recommended Posts