{"id":51,"date":"2025-10-17T14:03:42","date_gmt":"2025-10-17T14:03:42","guid":{"rendered":"https:\/\/theroyalscode.com\/students\/a_mehraban\/?p=51"},"modified":"2025-10-17T14:03:42","modified_gmt":"2025-10-17T14:03:42","slug":"about-what-i-learn-what-i-did","status":"publish","type":"post","link":"https:\/\/theroyalscode.com\/students\/a_mehraban\/2025\/10\/17\/about-what-i-learn-what-i-did\/","title":{"rendered":"About what I learn, what I did"},"content":{"rendered":"\n<p>today i did some code\/ I work on project stum <\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"861\" height=\"808\" src=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-4.png\" alt=\"\" class=\"wp-image-52\" style=\"width:444px;height:auto\" srcset=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-4.png 861w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-4-300x282.png 300w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-4-768x721.png 768w\" sizes=\"auto, (max-width: 861px) 100vw, 861px\" \/><\/figure>\n\n\n\n<p>this one also <\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"488\" src=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-5-1024x488.png\" alt=\"\" class=\"wp-image-53\" style=\"width:428px;height:auto\" srcset=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-5-1024x488.png 1024w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-5-300x143.png 300w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-5-768x366.png 768w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-5.png 1089w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>and i also made flower in python turtle <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import turtle\n\n\nscreen = turtle.Screen()\nscreen.bgcolor(\"lightblue\")\n\n\npen = turtle.Turtle()\npen.speed(0) \npen.hideturtle()\n\ndef draw_petal(color):\n    pen.color(color)\n    pen.begin_fill()\n    pen.circle(50, 60) \n    pen.left(120)\n    pen.circle(50, 60)\n    pen.end_fill()\n\n\ndef draw_flower():\n    \n    petal_colors = &#91;\"red\", \"orange\", \"yellow\", \"pink\", \"purple\", \"magenta\"]\n    for i in range(6):\n        draw_petal(petal_colors&#91;i % len(petal_colors)])\n        pen.left(60) \n\n    \n    pen.penup()\n    pen.goto(0, -20) \n    pen.pendown()\n    pen.color(\"brown\")\n    pen.begin_fill()\n    pen.circle(20)\n    pen.end_fill()\n\n\ndraw_flower()\n\n\nscreen.exitonclick()<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"972\" height=\"780\" src=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-6.png\" alt=\"\" class=\"wp-image-54\" style=\"width:434px;height:auto\" srcset=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-6.png 972w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-6-300x241.png 300w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-6-768x616.png 768w\" sizes=\"auto, (max-width: 972px) 100vw, 972px\" \/><\/figure>\n\n\n\n<p>i made a clown <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import turtle\n\n\nscreen = turtle.Screen()\nt = turtle.Turtle()\nt.speed(1) \nt.pensize(3)\n\n\nt.fillcolor(\"blue\")\nt.begin_fill()\nt.circle(100)\nt.end_fill()\n\n\nt.penup()\nt.goto(-50, 120)\nt.pendown()\nt.fillcolor(\"white\")\nt.begin_fill()\nt.circle(20)\nt.end_fill()\n\nt.penup()\nt.goto(50, 120)\nt.pendown()\nt.fillcolor(\"white\")\nt.begin_fill()\nt.circle(20)\nt.end_fill()\n\n\nt.penup()\nt.goto(-50, 130)\nt.pendown()\nt.fillcolor(\"black\")\nt.begin_fill()\nt.circle(10)\nt.end_fill()\n\nt.penup()\nt.goto(50, 130)\nt.pendown()\nt.fillcolor(\"black\")\nt.begin_fill()\nt.circle(10)\nt.end_fill()\n\n\nt.penup()\nt.goto(-60, 50)\nt.pendown()\nt.fillcolor(\"red\")\nt.begin_fill()\nt.goto(60, 50)\nt.setheading(270)\nt.circle(-60, 180)\nt.goto(-60, 50)\nt.end_fill()\n\n\nt.penup()\nt.goto(-30, 50)\nt.pendown()\nt.fillcolor(\"red\")\nt.begin_fill()\nt.goto(30, 50)\nt.setheading(270)\nt.circle(-30, 180)\nt.goto(-30, 50)\nt.end_fill()\n\nt.hideturtle()\nscreen.mainloop()<\/code><\/pre>\n\n\n\n<p>here is picture<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"617\" height=\"364\" src=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-7.png\" alt=\"\" class=\"wp-image-55\" style=\"width:417px;height:auto\" srcset=\"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-7.png 617w, https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-content\/uploads\/2025\/10\/image-7-300x177.png 300w\" sizes=\"auto, (max-width: 617px) 100vw, 617px\" \/><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>today i did some code\/ I work on project stum this one also and i also made flower in python [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-51","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/posts\/51","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/comments?post=51"}],"version-history":[{"count":1,"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/posts\/51\/revisions"}],"predecessor-version":[{"id":56,"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/posts\/51\/revisions\/56"}],"wp:attachment":[{"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/media?parent=51"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/categories?post=51"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/a_mehraban\/wp-json\/wp\/v2\/tags?post=51"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}