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;








0















For example:



write("First Last", True, align="right")


But with specific (x,y) coordinates










share|improve this question
























  • 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

















0















For example:



write("First Last", True, align="right")


But with specific (x,y) coordinates










share|improve this question
























  • 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













0












0








0








For example:



write("First Last", True, align="right")


But with specific (x,y) coordinates










share|improve this question
















For example:



write("First Last", True, align="right")


But with specific (x,y) coordinates







python turtle-graphics






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












1 Answer
1






active

oldest

votes


















0














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.






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%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









    0














    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.






    share|improve this answer



























      0














      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.






      share|improve this answer

























        0












        0








        0







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 22 at 16:08









        cdlanecdlane

        19.9k21245




        19.9k21245





























            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%2f55293019%2fhow-can-i-position-text-in-python-turtle%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

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript