Efficient way for slicing a input string and turning variables into integers or float in python





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















In urionlinejudge.com.br, a lot of their beginner problems consists in a single line input, where you slice it in different variables and put them in a formula or something.



Example, the input consists of 3 numbers in a single line, and I need to sum them all. So the input could be 10 5 6, and the output should be 21.



For now what I've been doing is the following:



var_a, var_b, var_c = input().split(' ')
var_a = int(var_a)
var_b = int(var_b)
var_c = int(var_c)

#some generic code for sum of the variables


Is there a more efficient way of doing the first part of the code?










share|improve this question































    0















    In urionlinejudge.com.br, a lot of their beginner problems consists in a single line input, where you slice it in different variables and put them in a formula or something.



    Example, the input consists of 3 numbers in a single line, and I need to sum them all. So the input could be 10 5 6, and the output should be 21.



    For now what I've been doing is the following:



    var_a, var_b, var_c = input().split(' ')
    var_a = int(var_a)
    var_b = int(var_b)
    var_c = int(var_c)

    #some generic code for sum of the variables


    Is there a more efficient way of doing the first part of the code?










    share|improve this question



























      0












      0








      0








      In urionlinejudge.com.br, a lot of their beginner problems consists in a single line input, where you slice it in different variables and put them in a formula or something.



      Example, the input consists of 3 numbers in a single line, and I need to sum them all. So the input could be 10 5 6, and the output should be 21.



      For now what I've been doing is the following:



      var_a, var_b, var_c = input().split(' ')
      var_a = int(var_a)
      var_b = int(var_b)
      var_c = int(var_c)

      #some generic code for sum of the variables


      Is there a more efficient way of doing the first part of the code?










      share|improve this question
















      In urionlinejudge.com.br, a lot of their beginner problems consists in a single line input, where you slice it in different variables and put them in a formula or something.



      Example, the input consists of 3 numbers in a single line, and I need to sum them all. So the input could be 10 5 6, and the output should be 21.



      For now what I've been doing is the following:



      var_a, var_b, var_c = input().split(' ')
      var_a = int(var_a)
      var_b = int(var_b)
      var_c = int(var_c)

      #some generic code for sum of the variables


      Is there a more efficient way of doing the first part of the code?







      python variables input slice






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 '18 at 16:09







      redgermany

















      asked Nov 22 '18 at 13:17









      redgermanyredgermany

      235




      235
























          3 Answers
          3






          active

          oldest

          votes


















          1














          I'm assuming you are using str.split instead of the non-existent str.slice.



          For the sum, you can feed a list of strings to sum and map:



          res = sum(map(int, input().split()))





          share|improve this answer


























          • It worked, thank you for helping a beginner

            – redgermany
            Nov 22 '18 at 16:16



















          0














          efficient? I'm not sure. Prettier and Pythonic? Hell yeah.



          input_str = input()
          input_list = input_str.split(' ')

          # And now you can iterate over this list and cast it into integers:

          # list
          vars = [int(i) for i in input_list]

          result = sum(vars)
          print(result)





          share|improve this answer

































            0














            Split and map to int on the same line.



            var_a, var_b, var_c = list(map(int, input.split()))





            share|improve this answer
























            • It worked, thank you for helping a beginner

              – redgermany
              Nov 22 '18 at 16:16












            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%2f53431885%2fefficient-way-for-slicing-a-input-string-and-turning-variables-into-integers-or%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            I'm assuming you are using str.split instead of the non-existent str.slice.



            For the sum, you can feed a list of strings to sum and map:



            res = sum(map(int, input().split()))





            share|improve this answer


























            • It worked, thank you for helping a beginner

              – redgermany
              Nov 22 '18 at 16:16
















            1














            I'm assuming you are using str.split instead of the non-existent str.slice.



            For the sum, you can feed a list of strings to sum and map:



            res = sum(map(int, input().split()))





            share|improve this answer


























            • It worked, thank you for helping a beginner

              – redgermany
              Nov 22 '18 at 16:16














            1












            1








            1







            I'm assuming you are using str.split instead of the non-existent str.slice.



            For the sum, you can feed a list of strings to sum and map:



            res = sum(map(int, input().split()))





            share|improve this answer















            I'm assuming you are using str.split instead of the non-existent str.slice.



            For the sum, you can feed a list of strings to sum and map:



            res = sum(map(int, input().split()))






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 22 '18 at 13:30

























            answered Nov 22 '18 at 13:24









            jppjpp

            103k2167117




            103k2167117













            • It worked, thank you for helping a beginner

              – redgermany
              Nov 22 '18 at 16:16



















            • It worked, thank you for helping a beginner

              – redgermany
              Nov 22 '18 at 16:16

















            It worked, thank you for helping a beginner

            – redgermany
            Nov 22 '18 at 16:16





            It worked, thank you for helping a beginner

            – redgermany
            Nov 22 '18 at 16:16













            0














            efficient? I'm not sure. Prettier and Pythonic? Hell yeah.



            input_str = input()
            input_list = input_str.split(' ')

            # And now you can iterate over this list and cast it into integers:

            # list
            vars = [int(i) for i in input_list]

            result = sum(vars)
            print(result)





            share|improve this answer






























              0














              efficient? I'm not sure. Prettier and Pythonic? Hell yeah.



              input_str = input()
              input_list = input_str.split(' ')

              # And now you can iterate over this list and cast it into integers:

              # list
              vars = [int(i) for i in input_list]

              result = sum(vars)
              print(result)





              share|improve this answer




























                0












                0








                0







                efficient? I'm not sure. Prettier and Pythonic? Hell yeah.



                input_str = input()
                input_list = input_str.split(' ')

                # And now you can iterate over this list and cast it into integers:

                # list
                vars = [int(i) for i in input_list]

                result = sum(vars)
                print(result)





                share|improve this answer















                efficient? I'm not sure. Prettier and Pythonic? Hell yeah.



                input_str = input()
                input_list = input_str.split(' ')

                # And now you can iterate over this list and cast it into integers:

                # list
                vars = [int(i) for i in input_list]

                result = sum(vars)
                print(result)






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 22 '18 at 13:31

























                answered Nov 22 '18 at 13:24









                Eran MosheEran Moshe

                1,418723




                1,418723























                    0














                    Split and map to int on the same line.



                    var_a, var_b, var_c = list(map(int, input.split()))





                    share|improve this answer
























                    • It worked, thank you for helping a beginner

                      – redgermany
                      Nov 22 '18 at 16:16
















                    0














                    Split and map to int on the same line.



                    var_a, var_b, var_c = list(map(int, input.split()))





                    share|improve this answer
























                    • It worked, thank you for helping a beginner

                      – redgermany
                      Nov 22 '18 at 16:16














                    0












                    0








                    0







                    Split and map to int on the same line.



                    var_a, var_b, var_c = list(map(int, input.split()))





                    share|improve this answer













                    Split and map to int on the same line.



                    var_a, var_b, var_c = list(map(int, input.split()))






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 22 '18 at 13:41









                    riddlerriddler

                    417311




                    417311













                    • It worked, thank you for helping a beginner

                      – redgermany
                      Nov 22 '18 at 16:16



















                    • It worked, thank you for helping a beginner

                      – redgermany
                      Nov 22 '18 at 16:16

















                    It worked, thank you for helping a beginner

                    – redgermany
                    Nov 22 '18 at 16:16





                    It worked, thank you for helping a beginner

                    – redgermany
                    Nov 22 '18 at 16:16


















                    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%2f53431885%2fefficient-way-for-slicing-a-input-string-and-turning-variables-into-integers-or%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

                    How to pass form data using jquery Ajax to insert data in database?

                    National Museum of Racing and Hall of Fame

                    Guess what letter conforming each word