uk
Feedback
PythonNotes

PythonNotes

Відкрити в Telegram

Best Place for Learning Python Programming Free Notes of Programming languages 👇 • Python • Java • JavaScript • C • C++ Free Courses & Job Updates ☑️🔎🆓

Показати більше

📈 Аналітичний огляд Telegram-каналу PythonNotes

Канал PythonNotes (@pythonnotes1) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 78 249 підписників, посідаючи 1 970 місце в категорії Освіта та 3 968 місце у регіоні Індія.

📊 Показники аудиторії та динаміка

З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 78 249 підписників.

За останніми даними від 26 серпня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на -1 459, а за останні 24 години на -21, загальне охоплення залишається високим.

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 8.58%. Протягом перших 24 годин після публікації контент зазвичай збирає 1.53% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 6 717 переглядів. Протягом першої доби публікація в середньому набирає 1 197 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 21.
  • Тематичні інтереси: Контент зосереджений навколо ключових тем, таких як certification, programming, head.direction, internship, segment.

📝 Опис та контентна політика

Автор описує ресурс як майданчик для висловлення суб'єктивної думки:
Best Place for Learning Python Programming Free Notes of Programming languages 👇 • Python • Java • JavaScript • C • C++ Free Courses & Job Updates ☑️🔎🆓

Завдяки високій частоті оновлень (останні дані отримано 27 серпня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Освіта.

78 249
Підписники
-2124 години
-3127 днів
-1 45930 день
Архів дописів
\n \n \n
\n

Legend form

\n

Enter Id

\n \n

Enter Confirm Pass

\n \n
\n \n\n
\n\n \n\n\n","datePublished":"2024-02-28T16:40:39Z","dateModified":"2024-02-28T16:40:39Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":34,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":47395},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":174},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":116},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":34}]}},{"@type":"ListItem","position":8,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/556","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/556","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/556","headline":"Snake Game using Turtle in Python ✅ Source Code 👇👇 # import required modules import turtle import time import…","articleBody":"Snake Game using Turtle in Python ✅ Source Code 👇👇\n\n# import required modules\nimport turtle\nimport time\nimport random\n\ndelay = 0.1\nscore = 0\nhigh_score = 0\n\n\n# Creating a window screen\nwn = turtle.Screen()\nwn.title(\"Snake Game\")\nwn.bgcolor(\"blue\")\n# the width and height can be put as user's choice\nwn.setup(width=600, height=600)\nwn.tracer(0)\n\n# head of the snake\nhead = turtle.Turtle()\nhead.shape(\"square\")\nhead.color(\"white\")\nhead.penup()\nhead.goto(0, 0)\nhead.direction = \"Stop\"\n\n# food in the game\nfood = turtle.Turtle()\ncolors = random.choice(['red', 'green', 'black'])\nshapes = random.choice(['square', 'triangle', 'circle'])\nfood.speed(0)\nfood.shape(shapes)\nfood.color(colors)\nfood.penup()\nfood.goto(0, 100)\n\npen = turtle.Turtle()\npen.speed(0)\npen.shape(\"square\")\npen.color(\"white\")\npen.penup()\npen.hideturtle()\npen.goto(0, 250)\npen.write(\"Score : 0  High Score : 0\", align=\"center\",\n          font=(\"candara\", 24, \"bold\"))\n\n\n# assigning key directions\ndef group():\n    if head.direction != \"down\":\n        head.direction = \"up\"\n\n\ndef godown():\n    if head.direction != \"up\":\n        head.direction = \"down\"\n\n\ndef goleft():\n    if head.direction != \"right\":\n        head.direction = \"left\"\n\n\ndef goright():\n    if head.direction != \"left\":\n        head.direction = \"right\"\n\n\ndef move():\n    if head.direction == \"up\":\n        y = head.ycor()\n        head.sety(y+20)\n    if head.direction == \"down\":\n        y = head.ycor()\n        head.sety(y-20)\n    if head.direction == \"left\":\n        x = head.xcor()\n        head.setx(x-20)\n    if head.direction == \"right\":\n        x = head.xcor()\n        head.setx(x+20)\n\n\nwn.listen()\nwn.onkeypress(group, \"w\")\nwn.onkeypress(godown, \"s\")\nwn.onkeypress(goleft, \"a\")\nwn.onkeypress(goright, \"d\")\n\nsegments = []\n\n# By - @pythonnotes1\n# Main Gameplay\nwhile True:\n    wn.update()\n    if head.xcor() > 290 or head.xcor() < -290 or head.ycor() > 290 or head.ycor() < -290:\n        time.sleep(1)\n        head.goto(0, 0)\n        head.direction = \"Stop\"\n        colors = random.choice(['red', 'blue', 'green'])\n        shapes = random.choice(['square', 'circle'])\n        for segment in segments:\n            segment.goto(1000, 1000)\n        segments.clear()\n        score = 0\n        delay = 0.1\n        pen.clear()\n        pen.write(\"Score : {} High Score : {} \".format(\n            score, high_score), align=\"center\", font=(\"candara\", 24, \"bold\"))\n    if head.distance(food) < 20:\n        x = random.randint(-270, 270)\n        y = random.randint(-270, 270)\n        food.goto(x, y)\n\n        # Adding segment\n        new_segment = turtle.Turtle()\n        new_segment.speed(0)\n        new_segment.shape(\"square\")\n        new_segment.color(\"orange\")  # tail colour\n        new_segment.penup()\n        segments.append(new_segment)\n        delay -= 0.001\n        score += 10\n        if score > high_score:\n            high_score = score\n        pen.clear()\n        pen.write(\"Score : {} High Score : {} \".format(\n            score, high_score), align=\"center\", font=(\"candara\", 24, \"bold\"))\n    # Checking for head collisions with body segments\n    for index in range(len(segments)-1, 0, -1):\n        x = segments[index-1].xcor()\n        y = segments[index-1].ycor()\n        segments[index].goto(x, y)\n    if len(segments) > 0:\n        x = head.xcor()\n        y = head.ycor()\n        segments[0].goto(x, y)\n    move()\n    for segment in segments:\n        if segment.distance(head) < 20:\n            time.sleep(1)\n            head.goto(0, 0)\n            head.direction = \"stop\"\n            colors = random.choice(['red', 'blue', 'green'])\n            shapes = random.choice(['square', 'circle'])\n            for segment in segments:\n                segment.goto(1000, 1000)\n            segments.clear()\n\n            score = 0\n            delay = 0.1\n            pen.clear()\n            pen.write(\"Score : {} High Score : {} \".format(\n                score, high_score), align=\"center\", font=(\"candara\", 24, \"bold\"))\n    time.sleep(delay)\n\nwn.mainloop()","datePublished":"2024-02-22T08:16:08Z","dateModified":"2024-02-22T08:16:08Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":41,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":41473},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":153},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":171},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":41}]}},{"@type":"ListItem","position":9,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/555","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/555","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/555","headline":"PythonNotes","datePublished":"2024-02-21T16:17:52Z","dateModified":"2024-02-22T04:34:02Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":8,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":3596},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":4},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":8}]}},{"@type":"ListItem","position":10,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/554","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/554","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/554","headline":"PythonNotes","datePublished":"2024-02-21T16:16:41Z","dateModified":"2024-02-21T16:17:06Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":1}]}},{"@type":"ListItem","position":11,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/553","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/553","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/553","headline":"🚀🔥 Last 500 Seats Left 🚀🔥 Learn Programming at Free of cost & also you can Make Money 💰 💻 Get Access of All C…","articleBody":"🚀🔥 Last 500 Seats Left 🚀🔥\n\nLearn Programming at Free of cost & also you can Make Money 💰 \n\n💻 Get Access of All Courses, Notes & Projects Codes at Free of cost 💯\n\nStart learning & Earning today 🚀\n\nClick here, SignUp Free\n        👇👇👇👇\nhttps://go.stackup.dev/rztHw\n\nReact - Thumb 👍 If you have already Joined ✅","datePublished":"2024-02-21T10:43:53Z","dateModified":"2024-02-22T04:34:02Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":13,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":5467},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":13},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":5},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":13}]}},{"@type":"ListItem","position":12,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/552","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/552","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/552","headline":"💥 🚀 Attention Guys 💥🚀 Learn Programming at Free of cost and Earn Money 💯 Join Free Course Now 🎁 ✅ You'll get…","articleBody":"💥 🚀  Attention Guys 💥🚀\n\nLearn Programming at Free of cost and Earn Money  💯\n\nJoin Free Course Now 🎁 ✅\n\nYou'll get  :\n\n• Free Programming Courses with Projects and Notes \n\n• Learn Python, Data Science , ChatGPT, AI , Web 3 Projects at Free of cost \n\nEarn Money 💸 also while Learning 💯\n\nCertification to everyone ✅\n\nClick here, SignUp Free 👇\n\nhttps://go.stackup.dev/rztHw\n\n\n⚠️ Only for first 500 People ⚠️","datePublished":"2024-02-19T14:25:30Z","dateModified":"2024-02-22T04:34:02Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":7,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":8934},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":16},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":14},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":7}]}},{"@type":"ListItem","position":13,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/551","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/551","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/551","headline":"PythonNotes","datePublished":"2024-02-19T14:23:00Z","dateModified":"2024-02-22T04:34:02Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":3,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":8637},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":7},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":1},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3}]}},{"@type":"ListItem","position":14,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/550","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/550","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/550","headline":"Code of this Project 👇 https://technewsidea.com/animated-login-form-using-html-css-javascript/","articleBody":"Code of this Project 👇\n\nhttps://technewsidea.com/animated-login-form-using-html-css-javascript/","datePublished":"2024-02-18T04:49:13Z","dateModified":"2024-02-18T04:49:13Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":17,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":39572},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":71},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":125},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":17}]}},{"@type":"ListItem","position":15,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/549","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/549","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/549","headline":"Python Online Training with Certification Click here, Register Free 👇👇👇 https://forms.gle/wJ9rbPTPv9x9QLTn9","articleBody":"Python Online Training with Certification \n\nClick here, Register Free \n 👇👇👇\nhttps://forms.gle/wJ9rbPTPv9x9QLTn9","datePublished":"2024-02-15T08:25:27Z","dateModified":"2024-02-15T16:13:08Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":12,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":4076},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":10},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":7},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":12}]}},{"@type":"ListItem","position":16,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/548","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/548","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/548","headline":"PythonNotes","datePublished":"2024-02-15T06:25:42Z","dateModified":"2024-02-15T16:13:08Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":12,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":4593},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":11},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":12}]}},{"@type":"ListItem","position":17,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/547","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/547","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/547","headline":"👉⭐ Golden Opportunity ⭐👈 Want to learn Python Programming with Certification at Free of cost 🤔 👉 Free Online…","articleBody":"👉⭐ Golden Opportunity ⭐👈\n\nWant to learn Python Programming with Certification at Free of cost 🤔\n\n👉 Free Online Batch is starting from 19th Feb  ✅\n\n⚠️ Free for First 500 Students ⚠️\n\nYou'll get :\n\n• Free Python Training from Scratch with Practicals 👍\n\n• Certificate to everyone ✅\n\nClick here, Register Free\n          👇👇👇\nhttps://forms.gle/wJ9rbPTPv9x9QLTn9\n\n⚠️ Don't miss this Opportunity ⚠️","datePublished":"2024-02-13T15:02:38Z","dateModified":"2024-02-15T16:13:08Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":15,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":9435},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":34},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":20},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":15}]}},{"@type":"ListItem","position":18,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/546","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/546","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/546","headline":"👉⭐ Golden Opportunity ⭐👈 Want to learn Python Programming with Certification at Free of cost 🤔 👉 Free Online…","articleBody":"👉⭐ Golden Opportunity ⭐👈\n\nWant to learn Python Programming with Certification at Free of cost 🤔\n\n👉 Free Online Batch is starting from 19th Feb  ✅\n\n⚠️ Free for First 500 Students ⚠️\n\nYou'll get :\n\n• Free Python Training from Scratch with Practicals 👍\n\n• Certificate to everyone ✅\n\nClick here, Register Free\n          👇👇👇\nhttps://forms.gle/wJ9rbPTPv9x9QLTn9\n\n⚠️ Don't miss this Opportunity ⚠️","datePublished":"2024-02-13T15:02:24Z","dateModified":"2024-02-13T15:02:36Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":12}]}},{"@type":"ListItem","position":19,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/545","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/545","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/545","headline":"PythonNotes","datePublished":"2024-02-13T15:02:09Z","dateModified":"2024-02-15T16:13:08Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":5,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":8723},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5}]}},{"@type":"ListItem","position":20,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/544","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/544","mainEntityOfPage":"https://telemetr.io/uk/channels/1830319994-pythonnotes1/posts/544","headline":"---- Rose Source Code ---- import turtle def draw_flower(): turtle.penup() turtle.left(90) turtle.fd(200) tur…","articleBody":"---- Rose Source Code ---- \n\nimport turtle\n\ndef draw_flower():\n    turtle.penup()\n    turtle.left(90)\n    turtle.fd(200)\n    turtle.pendown()\n    turtle.right(90)\n\n    # Flower base\n    # by : @pythoncoder92\n    turtle.fillcolor(\"red\")\n    turtle.begin_fill()\n    turtle.circle(10, 180)\n    turtle.circle(25, 110)\n    turtle.left(50)\n    turtle.circle(60, 45)\n    turtle.circle(20, 170)\n    turtle.right(24)\n    turtle.fd(30)\n    turtle.left(10)\n    turtle.circle(30, 110)\n    turtle.fd(20)\n    turtle.left(40)\n    turtle.circle(90, 70)\n    turtle.circle(30, 150)\n    turtle.right(30)\n    turtle.fd(15)\n    turtle.circle(80, 90)\n    turtle.left(15)\n    turtle.fd(45)\n    turtle.right(165)\n    turtle.fd(20)\n    turtle.left(155)\n    turtle.circle(150, 80)\n    turtle.left(50)\n    turtle.circle(150, 90)\n    turtle.end_fill()\n\n    # Petal 1\n    turtle.left(150)\n    turtle.circle(-90, 70)\n    turtle.left(20)\n    turtle.circle(75, 105)\n    turtle.setheading(60)\n    turtle.circle(80, 98)\n    turtle.circle(-90, 40)\n\n    # Petal 2\n    turtle.left(180)\n    turtle.circle(90, 40)\n    turtle.circle(-80, 98)\n    turtle.setheading(-83)\n\n    # Leaves 1\n    turtle.fd(30)\n    turtle.left(90)\n    turtle.fd(25)\n    turtle.left(45)\n    turtle.fillcolor(\"green\")\n    turtle.begin_fill()\n    turtle.circle(-80, 90)\n    turtle.right(90)\n    turtle.circle(-80, 90)\n    turtle.end_fill()\n    turtle.right(135)\n    turtle.fd(60)\n    turtle.left(180)\n    turtle.fd(85)\n    turtle.left(90)\n    turtle.fd(80)\n\n    # Leaves 2\n    turtle.right(90)\n    turtle.right(45)\n    turtle.fillcolor(\"green\")\n    turtle.begin_fill()\n    turtle.circle(80, 90)\n    turtle.left(90)\n    turtle.circle(80, 90)\n    turtle.end_fill()\n    turtle.left(135)\n    turtle.fd(60)\n    turtle.left(180)\n    turtle.fd(60)\n    turtle.right(90)\n    turtle.circle(200, 60)\n\n    turtle.done()\n\n# Call the function to draw the flower\ndraw_flower()","datePublished":"2024-02-11T05:07:22Z","dateModified":"2024-02-11T05:07:22Z","author":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"publisher":{"@type":"Organization","name":"PythonNotes","url":"https://telemetr.io/uk/channels/1830319994-pythonnotes1","image":"https://img.tlmtr.io/c/1ZRPQe/6217360981307273517?ty=x"},"commentCount":39,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":49352},{"@type":"InteractionCounter","interactionType":"https://schema.org/LikeAction","userInteractionCount":110},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":119},{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":39}]}}]}
Want to make your Career in Software Industry , which is high Paying. 🤔
Anonymous voting

-- 💥 GOLDEN OPPORTUNITY 💥 -- Want to learn HTML5, which is the Backbone of Web Development Technology at Free of cost 🤔 People who are Good at Frontend ( HTML5 Frontend ), are getting High Package Jobs in Companies ✅💥 You'll learn Free : • HTML5 language by Practicals 🌐 • Future Scopes & Opportunities 🚀 • Web Development & frontend ✅ Click here, Register Free                👇👇 https://forms.gle/btMrsqrmU4BNeNva6 ⚠️ Free for First 500 People ⚠️

Want to learn HTML5 ( Frontend + Web Development ) at Free of cost 🤔 🤔
Anonymous voting

Want to Learn how to Make Amazing Projects like above Legend Project in HTML 🤔
Anonymous voting

----- Golden Opportunity ------ Join 2 hour Free Masterclass ✅ -> Get Many Opportunities -> Learn SQL Technology -> Become Expert & Get Good Job Click here to register 👇 https://forms.gle/vEdSmyqPRixvCH7LA ⚠️ Only for First 300 People ⚠️

Want to learn SQL, which is high in demand with Higher Salary Package 🤔🤔
Anonymous voting

LEGEND Form Project 😅😀 ----------------------------------------------------- Complete Source Code 👇 ----------------------------------------------------- <html> <head> <style> .outer{  margin:auto; height:300px; width:400px; border:2px solid black; position:relative } p{ margin-left:80px; } .in{ margin-left:80px; padding:10px } #bt{ margin-top:20px; position:absolute; left:150px; } #bt:hover{ background:green; font-size:13px; cursor:pointer; color:white; } </style> <script> function fa(){ if(a.value=="" || b.value==""){ f() document.getElementById("a").style.border="3px solid red" document.getElementById("b").style.border="3px solid red" bt.value="Pahila data tak" } else{ document.getElementById("a").style.border="3px solid green" document.getElementById("b").style.border="3px solid green" bt.value="Ha thik ahe ata" bt.style.left="120px"; } } flag=1 function f(){ if(flag==1){ bt.style.left="210px" flag=2 } else if(flag==2){ bt.style.left="80px" flag=1 } } </script> </head> <body> <div class="outer"> <h1 style="text-align:center">Legend form</h1> <p>Enter Id</p> <input class="in" type="text" placeholder="Enter id" id="a"/> <p>Enter Confirm Pass</p> <input class="in" type="password" placeholder="Enter password" id="b"/> <br> <input type="submit" onmouseenter="fa()" onclick="alert('waaaa')" id="bt" /> </div> </body> </html>

Snake Game using Turtle in Python ✅ Source Code 👇👇 # import required modules import turtle import time import random delay = 0.1 score = 0 high_score = 0 # Creating a window screen wn = turtle.Screen() wn.title("Snake Game") wn.bgcolor("blue") # the width and height can be put as user's choice wn.setup(width=600, height=600) wn.tracer(0) # head of the snake head = turtle.Turtle() head.shape("square") head.color("white") head.penup() head.goto(0, 0) head.direction = "Stop" # food in the game food = turtle.Turtle() colors = random.choice(['red', 'green', 'black']) shapes = random.choice(['square', 'triangle', 'circle']) food.speed(0) food.shape(shapes) food.color(colors) food.penup() food.goto(0, 100) pen = turtle.Turtle() pen.speed(0) pen.shape("square") pen.color("white") pen.penup() pen.hideturtle() pen.goto(0, 250) pen.write("Score : 0  High Score : 0", align="center",           font=("candara", 24, "bold")) # assigning key directions def group():     if head.direction != "down":         head.direction = "up" def godown():     if head.direction != "up":         head.direction = "down" def goleft():     if head.direction != "right":         head.direction = "left" def goright():     if head.direction != "left":         head.direction = "right" def move():     if head.direction == "up":         y = head.ycor()         head.sety(y+20)     if head.direction == "down":         y = head.ycor()         head.sety(y-20)     if head.direction == "left":         x = head.xcor()         head.setx(x-20)     if head.direction == "right":         x = head.xcor()         head.setx(x+20) wn.listen() wn.onkeypress(group, "w") wn.onkeypress(godown, "s") wn.onkeypress(goleft, "a") wn.onkeypress(goright, "d") segments = [] # By - @pythonnotes1 # Main Gameplay while True:     wn.update()     if head.xcor() > 290 or head.xcor() < -290 or head.ycor() > 290 or head.ycor() < -290:         time.sleep(1)         head.goto(0, 0)         head.direction = "Stop"         colors = random.choice(['red', 'blue', 'green'])         shapes = random.choice(['square', 'circle'])         for segment in segments:             segment.goto(1000, 1000)         segments.clear()         score = 0         delay = 0.1         pen.clear()         pen.write("Score : {} High Score : {} ".format(             score, high_score), align="center", font=("candara", 24, "bold"))     if head.distance(food) < 20:         x = random.randint(-270, 270)         y = random.randint(-270, 270)         food.goto(x, y)         # Adding segment         new_segment = turtle.Turtle()         new_segment.speed(0)         new_segment.shape("square")         new_segment.color("orange")  # tail colour         new_segment.penup()         segments.append(new_segment)         delay -= 0.001         score += 10         if score > high_score:             high_score = score         pen.clear()         pen.write("Score : {} High Score : {} ".format(             score, high_score), align="center", font=("candara", 24, "bold"))     # Checking for head collisions with body segments     for index in range(len(segments)-1, 0, -1):         x = segments[index-1].xcor()         y = segments[index-1].ycor()         segments[index].goto(x, y)     if len(segments) > 0:         x = head.xcor()         y = head.ycor()         segments[0].goto(x, y)     move()     for segment in segments:         if segment.distance(head) < 20:             time.sleep(1)             head.goto(0, 0)             head.direction = "stop"             colors = random.choice(['red', 'blue', 'green'])             shapes = random.choice(['square', 'circle'])             for segment in segments:                 segment.goto(1000, 1000)             segments.clear()             score = 0             delay = 0.1             pen.clear()             pen.write("Score : {} High Score : {} ".format(                 score, high_score), align="center", font=("candara", 24, "bold"))     time.sleep(delay) wn.mainloop()

Have you Joined Learn Programming 💻 & Earning Money 💰 Opportunity at Free of cost 🤔
Anonymous voting

Have you Joined Learn Programming 💻 & Earning Money 💰 Opportunity 🤔
Anonymous voting

🚀🔥 Last 500 Seats Left 🚀🔥 Learn Programming at Free of cost & also you can Make Money 💰 💻 Get Access of All Courses, No
🚀🔥 Last 500 Seats Left 🚀🔥 Learn Programming at Free of cost & also you can Make Money 💰 💻 Get Access of All Courses, Notes & Projects Codes at Free of cost 💯 Start learning & Earning today 🚀 Click here, SignUp Free         👇👇👇👇 https://go.stackup.dev/rztHw React - Thumb 👍 If you have already Joined ✅

💥 🚀  Attention Guys 💥🚀 Learn Programming at Free of cost and Earn Money  💯 Join Free Course Now 🎁 ✅ You'll get  : • Free Programming Courses with Projects and NotesLearn Python, Data Science , ChatGPT, AI , Web 3 Projects at Free of cost Earn Money 💸 also while Learning 💯 Certification to everyone ✅ Click here, SignUp Free 👇 https://go.stackup.dev/rztHw ⚠️ Only for first 500 People ⚠️

Want to learn 💻 Programming at Free of cost & also Earn Money 💰 🤔
Anonymous voting

Python Online Training with Certification Click here, Register Free 👇👇👇 https://forms.gle/wJ9rbPTPv9x9QLTn9
Python Online Training with Certification Click here, Register Free 👇👇👇 https://forms.gle/wJ9rbPTPv9x9QLTn9

Did you Join Free Python with Certification Training starting from 19th Feb 🤔
Anonymous voting

👉⭐ Golden Opportunity ⭐👈 Want to learn Python Programming with Certification at Free of cost 🤔 👉 Free Online Batch is starting from 19th Feb  ✅ ⚠️ Free for First 500 Students ⚠️ You'll get : • Free Python Training from Scratch with Practicals 👍 • Certificate to everyone ✅ Click here, Register Free           👇👇👇 https://forms.gle/wJ9rbPTPv9x9QLTn9 ⚠️ Don't miss this Opportunity ⚠️

👉⭐ Golden Opportunity ⭐👈 Want to learn Python Programming with Certification at Free of cost 🤔 👉 Free Online Batch is starting from 19th Feb  ✅ ⚠️ Free for First 500 Students ⚠️ You'll get : • Free Python Training from Scratch with Practicals 👍 • Certificate to everyone ✅ Click here, Register Free           👇👇👇 https://forms.gle/wJ9rbPTPv9x9QLTn9 ⚠️ Don't miss this Opportunity ⚠️

Wanna Join Free Python Programming Training 🤔
Anonymous voting

---- Rose Source Code ---- import turtle def draw_flower():     turtle.penup()     turtle.left(90)     turtle.fd(200)     turtle.pendown()     turtle.right(90)     # Flower base     # by : @pythoncoder92     turtle.fillcolor("red")     turtle.begin_fill()     turtle.circle(10, 180)     turtle.circle(25, 110)     turtle.left(50)     turtle.circle(60, 45)     turtle.circle(20, 170)     turtle.right(24)     turtle.fd(30)     turtle.left(10)     turtle.circle(30, 110)     turtle.fd(20)     turtle.left(40)     turtle.circle(90, 70)     turtle.circle(30, 150)     turtle.right(30)     turtle.fd(15)     turtle.circle(80, 90)     turtle.left(15)     turtle.fd(45)     turtle.right(165)     turtle.fd(20)     turtle.left(155)     turtle.circle(150, 80)     turtle.left(50)     turtle.circle(150, 90)     turtle.end_fill()     # Petal 1     turtle.left(150)     turtle.circle(-90, 70)     turtle.left(20)     turtle.circle(75, 105)     turtle.setheading(60)     turtle.circle(80, 98)     turtle.circle(-90, 40)     # Petal 2     turtle.left(180)     turtle.circle(90, 40)     turtle.circle(-80, 98)     turtle.setheading(-83)     # Leaves 1     turtle.fd(30)     turtle.left(90)     turtle.fd(25)     turtle.left(45)     turtle.fillcolor("green")     turtle.begin_fill()     turtle.circle(-80, 90)     turtle.right(90)     turtle.circle(-80, 90)     turtle.end_fill()     turtle.right(135)     turtle.fd(60)     turtle.left(180)     turtle.fd(85)     turtle.left(90)     turtle.fd(80)     # Leaves 2     turtle.right(90)     turtle.right(45)     turtle.fillcolor("green")     turtle.begin_fill()     turtle.circle(80, 90)     turtle.left(90)     turtle.circle(80, 90)     turtle.end_fill()     turtle.left(135)     turtle.fd(60)     turtle.left(180)     turtle.fd(60)     turtle.right(90)     turtle.circle(200, 60)     turtle.done() # Call the function to draw the flower draw_flower()