Python Day 1 Five Point Star

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ม.ค. 2025

ความคิดเห็น • 14

  • @sarangfr_kr
    @sarangfr_kr ปีที่แล้ว +1

    how do make it smaller?

  • @riskygadget4life
    @riskygadget4life 2 ปีที่แล้ว

    The inside of the circle is not filling got any tips?

  • @hitman7559
    @hitman7559 3 ปีที่แล้ว +3

    Thanks i completed my homework bc of you

  • @SpoobyDaPunk
    @SpoobyDaPunk 2 ปีที่แล้ว

    How would I make something like this rotate and loop

  • @FK-ku1nz
    @FK-ku1nz 3 ปีที่แล้ว

    where you get that star picture?

  • @5.30jpg7
    @5.30jpg7 4 ปีที่แล้ว +1

    thx for this, it helps me a lot ☺️

  • @kalyankumarmeda9802
    @kalyankumarmeda9802 3 ปีที่แล้ว

    Forward is not work ,Attribute error

  • @dalilaatiqahbintirusmannor7681
    @dalilaatiqahbintirusmannor7681 2 ปีที่แล้ว

    How to make a 14 points star?

  • @sinkingboat7786
    @sinkingboat7786 3 ปีที่แล้ว +1

    thank for saying my life

  • @samveranoah6003
    @samveranoah6003 3 ปีที่แล้ว

    thanks

  • @user-nabil-nashaat
    @user-nabil-nashaat 4 ปีที่แล้ว

    Thanks for the challenges,
    I'd like to know how to draw a circle around the five point star

    • @csandmath
      @csandmath  4 ปีที่แล้ว +2

      Hello, it's tricky to run the calculations using a function of a circle. Here is one approach that would mark the locations of 5 locations equally spaced. See if you can make sense of it.
      from turtle import *
      speed(0)
      rt(36)
      locs = []
      for i in range(5):
      #Makes 1/5 of circle and appends loc
      for i in range(36):
      fd(3)
      lt(2)
      locs.append(pos()) #puts current location in locs list
      for i in [4,1,3,0,2,4]: #draws star to 5 marked locations
      goto(locs[i])

    • @Akkk219
      @Akkk219 ปีที่แล้ว +1

      Bro drawing a pentagram on python turtle 💀