問題タブ [line-count]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c - Count lines in C source code ignoring comments and empty lines
I want to counting lines without comments.
This counting lines in .c files
This remove comments
This counting empty lines
How to write the command to count lines of code and empty the lines?
python - (Python/Pandas) パンダの行数と同様の行数です
pandas データフレームの行数を取得するには、いくつかの方法があります。
私の質問は; ファイルの行数を知るだけで実際の行数を取得できますか? そうでない場合、データフレームをロードせずに行数を見つける方法の 1 つは何ですか?
これは、行数と行数を同じにすることができた状況です。
出力:
python - stdin で行番号を追跡する Pythonic の方法
stdin から入力を受け取り、stdin からの入力の行番号を追跡したい python スクリプトを作成しています。
自分でカウンターを作成することもできますが、Python が自動的に行番号を追跡するので、計算の無駄になると感じています。ただし、その番号を取得/印刷する方法が見つかりません。
.tell() メソッドについて読んで試してみましたが、行ではなく文字 (またはバイト) を追跡します。また、入力がstdinからのものである場合、失敗するようです。投げるIOError: [Errno 29] Illegal seek
私のテスト スクリプト「pythonTest.py」は次のようになります。
上記のものを実行すると(現在のように):
私が欲しい:
これを行うための素敵でpythonicな方法はありますか、それともforループに独自のカウンターを追加するだけの標準的な解決策ですか?