birthday = [2011,11,27]
print(“-“.join([str(n) for n in birthday]))
カテゴリー: programming
Python シーケンス
scores = [10, 20, 30, 20, 40]
tokyo = (“JPY”, 36, 140)
name = “Taro Yamada”
replaced_string = name.replace(“Taro”, “Jiro”)
upper_string = name.upper()
print(replaced_string)
print(upper_string)
Python タプルをアンパックする
tokyo = (“JPY”, 36, 140)
currency, *_ = tokyo
print(currency)
python タプル
tokyo = “JPY”, 36, 140
tokyo = list(tokyo)
tokyo[0] = “YEN”
tokyo = tuple(tokyo)
print(tokyo)
print(tokyo[0])
python リスト内表記とifを組み合わせる
prices = [100, 200, 150, 200, 100]
prices_with_tax = []
for price in prices:
if price != 200:
prices_with_tax.append(price * 1.1)
prices_with_tax = [price * 1.1 for price in prices if price != 200]
print(prices_with_tax)
Python リストの要素
scores = [10, 20, 30, 20, 40]
scores_sorted = sorted(scores, reverse=True)
print(scores)
print(scores_sorted)
C++ for文
// 04-for2.cpp : このファイルには ‘main’ 関数が含まれています。プログラム実行の開始と終了がそこで行われます。
//
include
using namespace std;
int main()
{
for (int i = 0; i < 5; ++i) {
if (i == 2) break;
cout << “Hello World!\n”;
}
}
// プログラムの実行: Ctrl + F5 または [デバッグ] > [デバッグなしで開始] メニュー
// プログラムのデバッグ: F5 または [デバッグ] > [デバッグの開始] メニュー
// 作業を開始するためのヒント:
// 1. ソリューション エクスプローラー ウィンドウを使用してファイルを追加/管理します
// 2. チーム エクスプローラー ウィンドウを使用してソース管理に接続します
// 3. 出力ウィンドウを使用して、ビルド出力とその他のメッセージを表示します
// 4. エラー一覧ウィンドウを使用してエラーを表示します
// 5. [プロジェクト] > [新しい項目の追加] と移動して新しいコード ファイルを作成するか、[プロジェクト] > [既存の項目の追加] と移動して既存のコード ファイルをプロジェクトに追加します
// 6. 後ほどこのプロジェクトを再び開く場合、[ファイル] > [開く] > [プロジェクト] と移動して .sln ファイルを選択します
Python 論理演算子
論理演算子
and なおかつ
ore もしくは
not ~ではない
eng_score = int(input(“English Score?”))
math_score = int(input(“Math Score?”))
#if eng_score == 100 or math_score == 100:
if not (eng_score == 0 or math_score == 0):
print(“OK!”)
else:
print(“NG!”)
C++ ポケモン
include
class Pokemon {
public:
// コンストラクタ
Pokemon(const std::string& nickname) {
this->nickname_ = nickname;
// nickname_ = nickname; と省略できる
}
// デストラクタ
virtual ~Pokemon() {
}
virtual void attack() = 0;
protected:
std::string nickname_;
};
class Pikachu : public Pokemon {
public:
Pikachu(const std::string& nickname) : Pokemon(nickname) {
}
virtual ~Pikachu() {
}
void attack() override {
std::cout << nickname_ << “の十万ボルト!” << std::endl;
}
};
class Zenigame : public Pokemon {
public:
Zenigame(const std::string& nickname) : Pokemon(nickname) {
}
virtual ~Zenigame() {
}
void attack() override {
std::cout << nickname_ << “のハイドロポンプ!” << std::endl;
}
};
int main() {
int i;
Pokemon* monsters[2];
monsters[0] = new Pikachu(“サトシのピカチュウ”);
monsters[1] = new Zenigame(“サトシのゼニガメ”);
std::cin >> i;
if (i >= 0 && i < 2) { monsters[i]->attack();
}
delete monsters[0];
delete monsters[1];
}
Python 文字列のオプション
initial_balance = int(input(“Initial Balance? “))
RATE = 1.1
print(f”Year 0: {initial_balance:,.2f}”)
print(f”Year 1: {initial_balance * RATE:,.2f}”)
print(f”Year 2: {initial_balance * RATE * RATE:,.2f}”)