次回の選択は これを試してみよう。 なぜなら、受取人がちゅうと俺でSeveralだし、ちゅうと俺は同じ家族の一員に間違いないから
flowchart TD
%% 栄養素と食事の関係
食10[緑黄色野菜、レバー] --> ビタミンA[ビタミンA: 胸腺の健康維持、T細胞の発育促進]
食11[ベリー類、ナッツ類、緑茶] --> 抗酸化物質[抗酸化物質: 胸腺の老化防止、機能維持]
食1[赤身肉、レバー、ほうれん草] --> 鉄[鉄: 酸素運搬、T細胞代謝促進]
食2[魚介類、卵、乳製品] --> ビタミンB12[ビタミンB12: 赤血球生成]
食3[緑葉野菜、アスパラガス、アボカド] --> 葉酸[葉酸: DNA合成]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('helloworld') | |
import random | |
def password_gen(): | |
s='' | |
s+=random.choice('abcdefghijklmnopqrstuvwxyz') | |
s+=random.choice('abcdefghijklmnopqrstuvwxyz'.upper()) | |
s+=random.choice('0123456789') | |
for _ in range(random.randint(3,17)): | |
i=random.randint(1,3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. foo | |
2. bar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gist - https://gist.github.com/jamad/a081f2e9cc0c23dcfcadcfde704984b6 | |
# executable - | |
# posti.fi/en/private/letters-and-mail/send-a-letter-or-postcard/international-letters-and-cards/economy-letter-abroad | |
''' | |
a=Maximum weight | |
b=Europe Priority | |
c=Europe Economy # commonly used | |
d=Other countries Priority | |
e=Other countries Economy # commonly used |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def is_check(B): | |
def f(r,c,u,v): | |
T=[] | |
for i in range(1,8): | |
p=(r+i*u,c+i*v) | |
if D.get(p,' ')in'♛♝♞♜♟':break | |
T+=[p] | |
return T | |
D={} | |
for r in range(8): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abc | def | ghi | |
---|---|---|---|
00 | 11 | 22 | |
33 | 44 | 55 |