Skip to content

Instantly share code, notes, and snippets.

@stripe-q
Created February 21, 2022 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stripe-q/4b187e129e3acaab5ffcdc8dc825a9c0 to your computer and use it in GitHub Desktop.
Save stripe-q/4b187e129e3acaab5ffcdc8dc825a9c0 to your computer and use it in GitHub Desktop.
Untitled0.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "Untitled0.ipynb",
"provenance": [],
"authorship_tag": "ABX9TyOBjCZbKg4WhfFS44L211Q+",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/stripe-q/4b187e129e3acaab5ffcdc8dc825a9c0/untitled0.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"id": "VdYL1Bu1Owlp"
},
"outputs": [],
"source": [
"a = [1, 2, 3, 4]\n",
"b = [5, 6, 7, 7]"
]
},
{
"cell_type": "code",
"source": [
"print(a[0])"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "ZPXT8uDPO4Gx",
"outputId": "3745fa35-1447-4e93-8d7d-5dd2d4f5a47c"
},
"execution_count": 2,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"1\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"print(a[0:2])"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "PM54QW6kO8dT",
"outputId": "1094be9f-2f1a-4404-9952-eb66aabb3ada"
},
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"[1, 2]\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"c = a + b"
],
"metadata": {
"id": "MbbROQXiO-RF"
},
"execution_count": 4,
"outputs": []
},
{
"cell_type": "code",
"source": [
"print(c)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "1zSfNs1SPAue",
"outputId": "a4da7462-68ff-49c0-da95-cf87b9ffa6b3"
},
"execution_count": 5,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"[1, 2, 3, 4, 5, 6, 7, 7]\n"
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment