検索ガイド -Search Guide-

単語と単語を空白で区切ることで AND 検索になります。
例: python デコレータ ('python' と 'デコレータ' 両方を含む記事を検索します)
単語の前に '-' を付けることで NOT 検索になります。
例: python -デコレータ ('python' は含むが 'デコレータ' は含まない記事を検索します)
" (ダブルクオート) で語句を囲むことで 完全一致検索になります。
例: "python data" 実装 ('python data' と '実装' 両方を含む記事を検索します。'python data 実装' の検索とは異なります。)
img_for_tre_tron

Tré Thộn を食べたことがありますか?
ベトナム・ビンズオン滞在中の方は是非注文して食べてみて!
絶対に美味しいです!
ホーチミン市内へも配達可能です。お問い合わせください。

Have you ever had "Tré Thộn" before?
If you're living at Bình Dương in Vietnam, you "must" try to order and eat it.
I'm sure you're very surprised how delicious it is!!
If you're in Hồ Chí Minh, you have a chance to get it too. Please call!!
>>

SUPPORT UKRAINE

- Your indifference to the act of cruelty can thrive rogue nations like Russia -

タグ

enumerate

を含むブログ一覧

【 Effective Python, 2nd Edition 】アンパックのちょっとした使い方 - 1: 一時変数を使わずにスワップする、2: インデックス番号を用いないでネストしている iterable の要素を取り出す -

Published 2020年6月10日16:03 by mootaro23
1: 次のようなリストをアルファベット順に並べ替えるとします( sort() を使っちゃダメですよ)。 friends = ['Hana', 'Yuka', 'Nana', 'Saki'] Python に馴染みが薄い方は、次のように一時変数を利用して入れ替えを行うと思います。 def bubble_sort(a): for _ in range(len(…

【Python 雑談・雑学】 ループ処理でインデックス番号が使いたいのなら enumerate() を使えば?

Published 2020年5月26日21:45 by mootaro23
次のような処理をしています。 top_friends = ['Nana', 'Saki', 'Yuka'] print(f'My top 1 friend is {top_friends[0]}.') print(f'My top 2 friend is {top_friends[1]}.') print(f'My top 3 friend is {top_friends[2]}…