Skip to content

Instantly share code, notes, and snippets.

@kursatyalin
Created September 13, 2022 15:54
Show Gist options
  • Save kursatyalin/f3572088f8574b3002cf1b10eec35f96 to your computer and use it in GitHub Desktop.
Save kursatyalin/f3572088f8574b3002cf1b10eec35f96 to your computer and use it in GitHub Desktop.
superlig-web-kazima-2.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": [],
"collapsed_sections": [],
"authorship_tag": "ABX9TyNjKBrzmHJ+2VLbG7mHQEcN",
"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/kursatyalin/f3572088f8574b3002cf1b10eec35f96/superlig-web-kazima-2.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "W20_D6W1jhfe"
},
"outputs": [],
"source": [
"def puan_cetvelini_olustur():\n",
" \"\"\"\n",
" Bu fonksiyon güncel hafta dahil tüm hafta puan cetvellerini Excel'e yazdırır.\n",
" \"\"\"\n",
" hafta_sayisi = 1\n",
" while hafta_sayisi <= GUNCEL_HAFTA:\n",
" print(f\"{hafta_sayisi}.hafta yazdırıldı.\")\n",
" puan_cetveli_yazdir(hafta_sayisi)\n",
" hafta_sayisi = hafta_sayisi + 1\n",
" print(\"*******************\")\n",
" print(f\"{GUNCEL_HAFTA} haftalık puan cetveli Excel'de oluşturuldu.\")"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment