How can i draw out shapes in circle with python?How can I represent an 'Enum' in Python?How do I copy a file in Python?How can I safely create a nested directory?How can I remove a trailing newline?How do I parse a string to a float or int?How to get the current time in PythonHow can I make a time delay in Python?How to make a flat list out of list of listsHow do I get the number of elements in a list?How do I concatenate two lists in Python?

How do some PhD students get 10+ papers? Is that what I need for landing good faculty position?

Can I not use QM-AM inequality to solve this?

How far did Gandalf and the Balrog drop from the bridge in Moria?

Email address etiquette - Which address should I use to contact professors?

Why is there a large performance impact when looping over an array over 240 elements?

Bitcoin successfully deducted on sender wallet but did not reach receiver wallet

Why did I get only 5 points even though I won?

What gave Harry Potter the idea of writing in Tom Riddle's diary?

How can I decide if my homebrew item should require attunement?

Can sampling rate be a floating point number?

Can anybody explain why using multicolumn changes the width of the four-column tabular environment?

Train from Nagpur to Raipur

Is it legal for a company to enter an agreement not to hire employees from another company?

Why does chown not work in RUN command in Docker?

Can the ground attached to neutral fool a receptacle tester?

How would timezones work on a planet 100 times the size of our Earth

Change default layout when create new product

Normalization constant of a planar wave

Why does the standard fingering / strumming for a D maj chord leave out the 5th string?

A continuous water "planet" ring around a star

Why did the RAAF procure the F/A-18 despite being purpose-built for carriers?

Why are Gatwick's runways too close together?

On the Rømer experiments and the speed of light

How does proof assistant organize knowledge?



How can i draw out shapes in circle with python?


How can I represent an 'Enum' in Python?How do I copy a file in Python?How can I safely create a nested directory?How can I remove a trailing newline?How do I parse a string to a float or int?How to get the current time in PythonHow can I make a time delay in Python?How to make a flat list out of list of listsHow do I get the number of elements in a list?How do I concatenate two lists in Python?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








-2















I am learning python, and I cant figure out this simple task. I have a code sample with text, I need to do the same, but not with text, but some shapes (I need flags now -> see the image below).



Thank you for any solutions!



My code:



 import tkinter
import random

canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
canvas.pack()


for i in range(12):
canvas.create_text(250,250, text = 20*' '+'Python', font = 'Arial 25', angle = i*30)


tkinter.mainloop()


I need this result from the code:
https://imgur.com/ugdDhAg










share|improve this question
































    -2















    I am learning python, and I cant figure out this simple task. I have a code sample with text, I need to do the same, but not with text, but some shapes (I need flags now -> see the image below).



    Thank you for any solutions!



    My code:



     import tkinter
    import random

    canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
    canvas.pack()


    for i in range(12):
    canvas.create_text(250,250, text = 20*' '+'Python', font = 'Arial 25', angle = i*30)


    tkinter.mainloop()


    I need this result from the code:
    https://imgur.com/ugdDhAg










    share|improve this question




























      -2












      -2








      -2








      I am learning python, and I cant figure out this simple task. I have a code sample with text, I need to do the same, but not with text, but some shapes (I need flags now -> see the image below).



      Thank you for any solutions!



      My code:



       import tkinter
      import random

      canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
      canvas.pack()


      for i in range(12):
      canvas.create_text(250,250, text = 20*' '+'Python', font = 'Arial 25', angle = i*30)


      tkinter.mainloop()


      I need this result from the code:
      https://imgur.com/ugdDhAg










      share|improve this question
















      I am learning python, and I cant figure out this simple task. I have a code sample with text, I need to do the same, but not with text, but some shapes (I need flags now -> see the image below).



      Thank you for any solutions!



      My code:



       import tkinter
      import random

      canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
      canvas.pack()


      for i in range(12):
      canvas.create_text(250,250, text = 20*' '+'Python', font = 'Arial 25', angle = i*30)


      tkinter.mainloop()


      I need this result from the code:
      https://imgur.com/ugdDhAg







      python tkinter tkinter-canvas






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 13:51









      Bryan Oakley

      234k22 gold badges313 silver badges460 bronze badges




      234k22 gold badges313 silver badges460 bronze badges










      asked Mar 27 at 9:03









      DavidDavid

      93 bronze badges




      93 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0














          I managed to find out on my own...if someone ever needs this:



          import tkinter
          import random
          import math

          canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
          canvas.pack()

          length = 150
          Angle = 15

          RadAngle = math.pi/180*Angle #degree in radians to use it with cos and sin



          for i in range(24):
          canvas.create_line(250,250,250+math.cos(i*RadAngle)*length,250+math.sin(i*RadAngle)*length,
          250+math.cos((i+1)*RadAngle)*(length-25),250+math.sin((i+1)*RadAngle)*(length-25),
          250+math.cos(i*RadAngle)*(length-50),250+math.sin(i*RadAngle)*(length-50))

          tkinter.mainloop()





          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373295%2fhow-can-i-draw-out-shapes-in-circle-with-python%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I managed to find out on my own...if someone ever needs this:



            import tkinter
            import random
            import math

            canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
            canvas.pack()

            length = 150
            Angle = 15

            RadAngle = math.pi/180*Angle #degree in radians to use it with cos and sin



            for i in range(24):
            canvas.create_line(250,250,250+math.cos(i*RadAngle)*length,250+math.sin(i*RadAngle)*length,
            250+math.cos((i+1)*RadAngle)*(length-25),250+math.sin((i+1)*RadAngle)*(length-25),
            250+math.cos(i*RadAngle)*(length-50),250+math.sin(i*RadAngle)*(length-50))

            tkinter.mainloop()





            share|improve this answer





























              0














              I managed to find out on my own...if someone ever needs this:



              import tkinter
              import random
              import math

              canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
              canvas.pack()

              length = 150
              Angle = 15

              RadAngle = math.pi/180*Angle #degree in radians to use it with cos and sin



              for i in range(24):
              canvas.create_line(250,250,250+math.cos(i*RadAngle)*length,250+math.sin(i*RadAngle)*length,
              250+math.cos((i+1)*RadAngle)*(length-25),250+math.sin((i+1)*RadAngle)*(length-25),
              250+math.cos(i*RadAngle)*(length-50),250+math.sin(i*RadAngle)*(length-50))

              tkinter.mainloop()





              share|improve this answer



























                0












                0








                0







                I managed to find out on my own...if someone ever needs this:



                import tkinter
                import random
                import math

                canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
                canvas.pack()

                length = 150
                Angle = 15

                RadAngle = math.pi/180*Angle #degree in radians to use it with cos and sin



                for i in range(24):
                canvas.create_line(250,250,250+math.cos(i*RadAngle)*length,250+math.sin(i*RadAngle)*length,
                250+math.cos((i+1)*RadAngle)*(length-25),250+math.sin((i+1)*RadAngle)*(length-25),
                250+math.cos(i*RadAngle)*(length-50),250+math.sin(i*RadAngle)*(length-50))

                tkinter.mainloop()





                share|improve this answer













                I managed to find out on my own...if someone ever needs this:



                import tkinter
                import random
                import math

                canvas = tkinter.Canvas(height = 500, width = 500, background = 'white')
                canvas.pack()

                length = 150
                Angle = 15

                RadAngle = math.pi/180*Angle #degree in radians to use it with cos and sin



                for i in range(24):
                canvas.create_line(250,250,250+math.cos(i*RadAngle)*length,250+math.sin(i*RadAngle)*length,
                250+math.cos((i+1)*RadAngle)*(length-25),250+math.sin((i+1)*RadAngle)*(length-25),
                250+math.cos(i*RadAngle)*(length-50),250+math.sin(i*RadAngle)*(length-50))

                tkinter.mainloop()






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 16:58









                DavidDavid

                93 bronze badges




                93 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373295%2fhow-can-i-draw-out-shapes-in-circle-with-python%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해