How can I position text in Python Turtle? The 2019 Stack Overflow Developer Survey Results Are InHow to merge two dictionaries in a single expression?How do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?Does Python have a string 'contains' substring method?
I am an eight letter word. What am I?
Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?
Falsification in Math vs Science
Can we generate random numbers using irrational numbers like π and e?
How to obtain a position of last non-zero element
Is Cinnamon a desktop environment or a window manager? (Or both?)
For what reasons would an animal species NOT cross a *horizontal* land bridge?
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
What is this sharp, curved notch on my knife for?
Old scifi movie from the 50s or 60s with men in solid red uniforms who interrogate a spy from the past
Correct punctuation for showing a character's confusion
What do these terms in Caesar's Gallic wars mean?
Is bread bad for ducks?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Why isn't the circumferential light around the M87 black hole's event horizon symmetric?
Can a flute soloist sit?
Kerning for subscripts of sigma?
How come people say “Would of”?
How to support a colleague who finds meetings extremely tiring?
Did any laptop computers have a built-in 5 1/4 inch floppy drive?
Is Astrology considered scientific?
Why didn't the Event Horizon Telescope team mention Sagittarius A*?
Are spiders unable to hurt humans, especially very small spiders?
Is an up-to-date browser secure on an out-of-date OS?
How can I position text in Python Turtle?
The 2019 Stack Overflow Developer Survey Results Are InHow to merge two dictionaries in a single expression?How do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?Does Python have a string 'contains' substring method?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
For example:
write("First Last", True, align="right")
But with specific (x,y) coordinates
python turtle-graphics
add a comment |
For example:
write("First Last", True, align="right")
But with specific (x,y) coordinates
python turtle-graphics
It uses the current turtle position, so you will have to position your turtle at x, y first.
– Selcuk
Mar 22 at 4:43
Use one of the Turtle motion - Move and draw
– stovfl
Mar 22 at 10:13
add a comment |
For example:
write("First Last", True, align="right")
But with specific (x,y) coordinates
python turtle-graphics
For example:
write("First Last", True, align="right")
But with specific (x,y) coordinates
python turtle-graphics
python turtle-graphics
edited Mar 22 at 4:47
Suraj Kumar
2,79841026
2,79841026
asked Mar 22 at 4:39
Thirth PatelThirth Patel
1
1
It uses the current turtle position, so you will have to position your turtle at x, y first.
– Selcuk
Mar 22 at 4:43
Use one of the Turtle motion - Move and draw
– stovfl
Mar 22 at 10:13
add a comment |
It uses the current turtle position, so you will have to position your turtle at x, y first.
– Selcuk
Mar 22 at 4:43
Use one of the Turtle motion - Move and draw
– stovfl
Mar 22 at 10:13
It uses the current turtle position, so you will have to position your turtle at x, y first.
– Selcuk
Mar 22 at 4:43
It uses the current turtle position, so you will have to position your turtle at x, y first.
– Selcuk
Mar 22 at 4:43
Use one of the Turtle motion - Move and draw
– stovfl
Mar 22 at 10:13
Use one of the Turtle motion - Move and draw
– stovfl
Mar 22 at 10:13
add a comment |
1 Answer
1
active
oldest
votes
Along with using a command like setposition()
aka goto()
, setx()
or sety()
to position your turtle before you call write()
, the move
parameter to write()
, which you set to True
, doesn't do much when right aligning a left to right language like English, so you might as well leave it out:
setposition(100, 150)
write("First Last", align="right")
This will write the text "First Last"
, right aligned to the point (100, 150)
. I.e. the end of the text will fall at that position.
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%2f55293019%2fhow-can-i-position-text-in-python-turtle%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
Along with using a command like setposition()
aka goto()
, setx()
or sety()
to position your turtle before you call write()
, the move
parameter to write()
, which you set to True
, doesn't do much when right aligning a left to right language like English, so you might as well leave it out:
setposition(100, 150)
write("First Last", align="right")
This will write the text "First Last"
, right aligned to the point (100, 150)
. I.e. the end of the text will fall at that position.
add a comment |
Along with using a command like setposition()
aka goto()
, setx()
or sety()
to position your turtle before you call write()
, the move
parameter to write()
, which you set to True
, doesn't do much when right aligning a left to right language like English, so you might as well leave it out:
setposition(100, 150)
write("First Last", align="right")
This will write the text "First Last"
, right aligned to the point (100, 150)
. I.e. the end of the text will fall at that position.
add a comment |
Along with using a command like setposition()
aka goto()
, setx()
or sety()
to position your turtle before you call write()
, the move
parameter to write()
, which you set to True
, doesn't do much when right aligning a left to right language like English, so you might as well leave it out:
setposition(100, 150)
write("First Last", align="right")
This will write the text "First Last"
, right aligned to the point (100, 150)
. I.e. the end of the text will fall at that position.
Along with using a command like setposition()
aka goto()
, setx()
or sety()
to position your turtle before you call write()
, the move
parameter to write()
, which you set to True
, doesn't do much when right aligning a left to right language like English, so you might as well leave it out:
setposition(100, 150)
write("First Last", align="right")
This will write the text "First Last"
, right aligned to the point (100, 150)
. I.e. the end of the text will fall at that position.
answered Mar 22 at 16:08
cdlanecdlane
19.9k21245
19.9k21245
add a comment |
add a comment |
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%2f55293019%2fhow-can-i-position-text-in-python-turtle%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
It uses the current turtle position, so you will have to position your turtle at x, y first.
– Selcuk
Mar 22 at 4:43
Use one of the Turtle motion - Move and draw
– stovfl
Mar 22 at 10:13