サイトのタイトルを書きます。

サブタイトルを書きます。

2022-01-01から1年間の記事一覧

dfの作成方法と操作方法まとめ

データフレームテーブルの作成方法 df = pd.DataFrame( data={'one': [1, 2, 3, 4], 'two': [10, 10, 20, 20], 'three': [100, 200, 300, 400], 'four': [1000, 2000, 3000, 4000]} ) df 使用目的:テーブル操作の練習に使用する。 ざっと型情報を見る df.inf…

ITP1 全回答 C++

ITP1_1_A: Hello World C++ #include <bits/stdc++.h> using namespace std; int main() { cout << "Hello World"<< endl; } Python print("Hello World")</bits/stdc++.h>