GitXplorerGitXplorer
U

readme-ipynb

public
0 stars
0 forks
3 issues

Commits

List of commits on branch master.
Unverified
b4f8f3b6bcb7a7f7826af46325ca7aedb3559d7b

DOESN'T WORK OUT

UUrhengulas committed 5 years ago
Unverified
b1f6d756e43ef685445e0975ea73ee2a33d63960

Add readme.ipynb

UUrhengulas committed 5 years ago
Unverified
a134395155a77f69d2564782792475ea5b868f27

[git] Add .gitignore

UUrhengulas committed 5 years ago
Unverified
190538033e0d6b7e8882539bf9d37e58449d28df

[env] Setup pipenv

UUrhengulas committed 5 years ago

README

The README file for this repository.

{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "!!! DOESN'T WORK OUT", "\n", "# readme-ipynb\n", "This is repo to test if GihHub can deal with ipynb-files as README" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "table of content\n", "- about\n", "- code blocks\n", " - function definition\n", " - function call\n", " \n", "## about\n", "$\sum_4^3{5}$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## code blocks\n", "\n", "### function definition" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "def func(x: int = 5) -> None:\n", " for i in range(x):\n", " print((i+1)*" - ".join("test"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### function call" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "t - e - s - t\n", "t - e - s - tt - e - s - t\n", "t - e - s - tt - e - s - tt - e - s - t\n" ] } ], "source": [ "func(3)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 4 }