Upgrade to Pro — share decks privately, control downloads, hide ads and more …

コードをBlackにしよう

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

 コードをBlackにしよう

PythonのコードフォーマッターのBlackはいいぞというLTです。

Avatar for Yuki Okuda

Yuki Okuda

July 14, 2019
Tweet

More Decks by Yuki Okuda

Other Decks in Programming

Transcript

  1. 自己紹介 • Twitter / GitHub ◦ ikura1 • 仕事 ◦

    スポーツデータを用いた統計や機械学習 • 最近やってること ◦ Djangoと戯れてる
  2. どのスタイルが好きですか? def replace( text, old, new ): ... txt =

    'Hello, World' replace(txt, 'World', 'Osaka') def replace( text, old, new ): ... txt = "Hello, World" replace( txt, "World", "Osaka" ) def replace(text, old, new): ... txt = "Hello, World" replace(txt, "World", "Osaka") A B C