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;
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
add a comment |
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
add a comment |
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
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
python tkinter tkinter-canvas
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
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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()
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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()
add a comment |
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()
add a comment |
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()
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()
answered Mar 27 at 16:58
DavidDavid
93 bronze badges
93 bronze badges
add a comment |
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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