{
  "cells": [
    {
      "cell_type": "markdown",
      "metadata": {},
      "source": [
        "#"
      ],
      "id": "12589563-823b-4922-bff8-a395210f927e"
    },
    {
      "cell_type": "code",
      "execution_count": 1,
      "metadata": {},
      "outputs": [
        {
          "output_type": "display_data",
          "metadata": {},
          "data": {
            "text/plain": [
              "'Math314'"
            ]
          }
        }
      ],
      "source": [
        "s = \"314\"\n",
        "x = f\"Math{s}\"\n",
        "x"
      ],
      "id": "a3b89824-27b1-4324-b74e-f547c5d5cbe9"
    },
    {
      "cell_type": "code",
      "execution_count": 2,
      "metadata": {},
      "outputs": [],
      "source": [
        "if []:\n",
        "    print(\"s\")"
      ],
      "id": "210f7b16-8ee2-4a63-b3a9-1074c1d76cb8"
    },
    {
      "cell_type": "code",
      "execution_count": 3,
      "metadata": {},
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "s"
          ]
        }
      ],
      "source": [
        "if [[]]:\n",
        "    print(\"s\")"
      ],
      "id": "eac98201-8e74-4726-802c-416c56139c7d"
    },
    {
      "cell_type": "code",
      "execution_count": 4,
      "metadata": {},
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "s"
          ]
        }
      ],
      "source": [
        "if x:\n",
        "    print(\"s\")"
      ],
      "id": "68ae3917-d0ef-46be-9cfd-773bc9c97e34"
    },
    {
      "cell_type": "code",
      "execution_count": 5,
      "metadata": {},
      "outputs": [],
      "source": [
        "if \"\":\n",
        "    print(\"s\")"
      ],
      "id": "2527b9d8-c9c2-4336-8fcd-f4949b13acec"
    }
  ],
  "nbformat": 4,
  "nbformat_minor": 5,
  "metadata": {
    "kernelspec": {
      "name": "python3",
      "display_name": "Python 3 (ipykernel)",
      "language": "python"
    },
    "language_info": {
      "name": "python",
      "codemirror_mode": {
        "name": "ipython",
        "version": "3"
      },
      "file_extension": ".py",
      "mimetype": "text/x-python",
      "nbconvert_exporter": "python",
      "pygments_lexer": "ipython3",
      "version": "3.12.12"
    }
  }
}