Python : Control the number of variations entered by user
I have a script where the user decides how many titles or images he wants to enter. The maximum is 3 titles and 3 images and my script should create unique variations of the titles and images. If the user enters 3 titles 2 images, my script should create 6 variations:
Title1 + image1
Title1 + image2
Title2 + image1
Title2 + image2
Title3 + image1
Title3 + image2
Here is my code that is working ok but I was wondering if there is a lighter way to handle this case figure:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
if titleNbr == 1 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
if titleNbr == 1 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
if titleNbr == 2 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
if titleNbr == 2 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
if titleNbr == 2 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
if titleNbr == 3 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
print("Variations : Title3 + image1")
if titleNbr == 3 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
if titleNbr == 3 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
print("Variations : Title3 + image3")
Thank you.
python
add a comment |
I have a script where the user decides how many titles or images he wants to enter. The maximum is 3 titles and 3 images and my script should create unique variations of the titles and images. If the user enters 3 titles 2 images, my script should create 6 variations:
Title1 + image1
Title1 + image2
Title2 + image1
Title2 + image2
Title3 + image1
Title3 + image2
Here is my code that is working ok but I was wondering if there is a lighter way to handle this case figure:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
if titleNbr == 1 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
if titleNbr == 1 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
if titleNbr == 2 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
if titleNbr == 2 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
if titleNbr == 2 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
if titleNbr == 3 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
print("Variations : Title3 + image1")
if titleNbr == 3 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
if titleNbr == 3 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
print("Variations : Title3 + image3")
Thank you.
python
add a comment |
I have a script where the user decides how many titles or images he wants to enter. The maximum is 3 titles and 3 images and my script should create unique variations of the titles and images. If the user enters 3 titles 2 images, my script should create 6 variations:
Title1 + image1
Title1 + image2
Title2 + image1
Title2 + image2
Title3 + image1
Title3 + image2
Here is my code that is working ok but I was wondering if there is a lighter way to handle this case figure:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
if titleNbr == 1 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
if titleNbr == 1 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
if titleNbr == 2 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
if titleNbr == 2 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
if titleNbr == 2 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
if titleNbr == 3 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
print("Variations : Title3 + image1")
if titleNbr == 3 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
if titleNbr == 3 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
print("Variations : Title3 + image3")
Thank you.
python
I have a script where the user decides how many titles or images he wants to enter. The maximum is 3 titles and 3 images and my script should create unique variations of the titles and images. If the user enters 3 titles 2 images, my script should create 6 variations:
Title1 + image1
Title1 + image2
Title2 + image1
Title2 + image2
Title3 + image1
Title3 + image2
Here is my code that is working ok but I was wondering if there is a lighter way to handle this case figure:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
if titleNbr == 1 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
if titleNbr == 1 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
if titleNbr == 2 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
if titleNbr == 2 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
if titleNbr == 2 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
if titleNbr == 3 and imageNbr == 1:
print("Variations : Title1 + image1")
print("Variations : Title2 + image1")
print("Variations : Title3 + image1")
if titleNbr == 3 and imageNbr == 2:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
if titleNbr == 3 and imageNbr == 3:
print("Variations : Title1 + image1")
print("Variations : Title1 + image2")
print("Variations : Title1 + image3")
print("Variations : Title2 + image1")
print("Variations : Title2 + image2")
print("Variations : Title2 + image3")
print("Variations : Title3 + image1")
print("Variations : Title3 + image2")
print("Variations : Title3 + image3")
Thank you.
python
python
asked Nov 22 '18 at 4:57
Creek BarbaraCreek Barbara
18610
18610
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can do this by iterating from 1 to the title number and then from one to the image number, and just appending this number to your strings. For example:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
else:
for i in range(1, titleNbr + 1):
for j in range(1, imageNbr + 1):
print("Variations : Title" + str(i) + " + image" + str(j))
Let me know if you need clarification on any parts of this code!
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%2f53424137%2fpython-control-the-number-of-variations-entered-by-user%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
You can do this by iterating from 1 to the title number and then from one to the image number, and just appending this number to your strings. For example:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
else:
for i in range(1, titleNbr + 1):
for j in range(1, imageNbr + 1):
print("Variations : Title" + str(i) + " + image" + str(j))
Let me know if you need clarification on any parts of this code!
add a comment |
You can do this by iterating from 1 to the title number and then from one to the image number, and just appending this number to your strings. For example:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
else:
for i in range(1, titleNbr + 1):
for j in range(1, imageNbr + 1):
print("Variations : Title" + str(i) + " + image" + str(j))
Let me know if you need clarification on any parts of this code!
add a comment |
You can do this by iterating from 1 to the title number and then from one to the image number, and just appending this number to your strings. For example:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
else:
for i in range(1, titleNbr + 1):
for j in range(1, imageNbr + 1):
print("Variations : Title" + str(i) + " + image" + str(j))
Let me know if you need clarification on any parts of this code!
You can do this by iterating from 1 to the title number and then from one to the image number, and just appending this number to your strings. For example:
titleNbr = 3
imageNbr = 3
if titleNbr == 1 and imageNbr == 1:
print("No variation")
else:
for i in range(1, titleNbr + 1):
for j in range(1, imageNbr + 1):
print("Variations : Title" + str(i) + " + image" + str(j))
Let me know if you need clarification on any parts of this code!
answered Nov 22 '18 at 5:27
Unsolved CypherUnsolved Cypher
510316
510316
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%2f53424137%2fpython-control-the-number-of-variations-entered-by-user%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