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;
}
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
add a comment |
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
add a comment |
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
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
python variables input slice
edited Nov 22 '18 at 16:09
redgermany
asked Nov 22 '18 at 13:17
redgermanyredgermany
235
235
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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()))
It worked, thank you for helping a beginner
– redgermany
Nov 22 '18 at 16:16
add a comment |
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)
add a comment |
Split and map to int on the same line.
var_a, var_b, var_c = list(map(int, input.split()))
It worked, thank you for helping a beginner
– redgermany
Nov 22 '18 at 16:16
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%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
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()))
It worked, thank you for helping a beginner
– redgermany
Nov 22 '18 at 16:16
add a comment |
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()))
It worked, thank you for helping a beginner
– redgermany
Nov 22 '18 at 16:16
add a comment |
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()))
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()))
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
add a comment |
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
add a comment |
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)
add a comment |
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)
add a comment |
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)
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)
edited Nov 22 '18 at 13:31
answered Nov 22 '18 at 13:24
Eran MosheEran Moshe
1,418723
1,418723
add a comment |
add a comment |
Split and map to int on the same line.
var_a, var_b, var_c = list(map(int, input.split()))
It worked, thank you for helping a beginner
– redgermany
Nov 22 '18 at 16:16
add a comment |
Split and map to int on the same line.
var_a, var_b, var_c = list(map(int, input.split()))
It worked, thank you for helping a beginner
– redgermany
Nov 22 '18 at 16:16
add a comment |
Split and map to int on the same line.
var_a, var_b, var_c = list(map(int, input.split()))
Split and map to int on the same line.
var_a, var_b, var_c = list(map(int, input.split()))
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
add a comment |
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
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%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
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