print() prints only every second input
up vote
-3
down vote
favorite
I'm new to python and I've been trying to make a little function to call upon when I need to filter an input from everything except regular letters.
I've used SO for parts of the code, but I can't seem to understand why does it only print on every second try.
Here's my code:
import re
i=1
def inputFilterText():
inputRaw = input('input: ')
inputFiltered = re.sub('[^a-zA-Z]+', '', inputRaw)
return inputFiltered
while i > 0:
inputFilterText()
print(inputFilterText())
And here's my output:
I'm not really sure what's going on, but I presume it's a logical error. I've only just started using Python so any help is appreciated.
PS
The 'while' is only there so it's easier to test, it can be omitted.
python input
add a comment |
up vote
-3
down vote
favorite
I'm new to python and I've been trying to make a little function to call upon when I need to filter an input from everything except regular letters.
I've used SO for parts of the code, but I can't seem to understand why does it only print on every second try.
Here's my code:
import re
i=1
def inputFilterText():
inputRaw = input('input: ')
inputFiltered = re.sub('[^a-zA-Z]+', '', inputRaw)
return inputFiltered
while i > 0:
inputFilterText()
print(inputFilterText())
And here's my output:
I'm not really sure what's going on, but I presume it's a logical error. I've only just started using Python so any help is appreciated.
PS
The 'while' is only there so it's easier to test, it can be omitted.
python input
2
deleteinputFilterText()
line, you never print the return value from every other try (including the first)
– Chris_Rands
2 days ago
4
Please include your code as formatted text in your question. Pictures of code (or other text) are not appropriate.
– khelwood
2 days ago
Fixed it, sorry
– Roko
2 days ago
@Wombatz it was accidental, edited again
– Roko
2 days ago
add a comment |
up vote
-3
down vote
favorite
up vote
-3
down vote
favorite
I'm new to python and I've been trying to make a little function to call upon when I need to filter an input from everything except regular letters.
I've used SO for parts of the code, but I can't seem to understand why does it only print on every second try.
Here's my code:
import re
i=1
def inputFilterText():
inputRaw = input('input: ')
inputFiltered = re.sub('[^a-zA-Z]+', '', inputRaw)
return inputFiltered
while i > 0:
inputFilterText()
print(inputFilterText())
And here's my output:
I'm not really sure what's going on, but I presume it's a logical error. I've only just started using Python so any help is appreciated.
PS
The 'while' is only there so it's easier to test, it can be omitted.
python input
I'm new to python and I've been trying to make a little function to call upon when I need to filter an input from everything except regular letters.
I've used SO for parts of the code, but I can't seem to understand why does it only print on every second try.
Here's my code:
import re
i=1
def inputFilterText():
inputRaw = input('input: ')
inputFiltered = re.sub('[^a-zA-Z]+', '', inputRaw)
return inputFiltered
while i > 0:
inputFilterText()
print(inputFilterText())
And here's my output:
I'm not really sure what's going on, but I presume it's a logical error. I've only just started using Python so any help is appreciated.
PS
The 'while' is only there so it's easier to test, it can be omitted.
python input
python input
edited 2 days ago
asked 2 days ago
Roko
8110
8110
2
deleteinputFilterText()
line, you never print the return value from every other try (including the first)
– Chris_Rands
2 days ago
4
Please include your code as formatted text in your question. Pictures of code (or other text) are not appropriate.
– khelwood
2 days ago
Fixed it, sorry
– Roko
2 days ago
@Wombatz it was accidental, edited again
– Roko
2 days ago
add a comment |
2
deleteinputFilterText()
line, you never print the return value from every other try (including the first)
– Chris_Rands
2 days ago
4
Please include your code as formatted text in your question. Pictures of code (or other text) are not appropriate.
– khelwood
2 days ago
Fixed it, sorry
– Roko
2 days ago
@Wombatz it was accidental, edited again
– Roko
2 days ago
2
2
delete
inputFilterText()
line, you never print the return value from every other try (including the first)– Chris_Rands
2 days ago
delete
inputFilterText()
line, you never print the return value from every other try (including the first)– Chris_Rands
2 days ago
4
4
Please include your code as formatted text in your question. Pictures of code (or other text) are not appropriate.
– khelwood
2 days ago
Please include your code as formatted text in your question. Pictures of code (or other text) are not appropriate.
– khelwood
2 days ago
Fixed it, sorry
– Roko
2 days ago
Fixed it, sorry
– Roko
2 days ago
@Wombatz it was accidental, edited again
– Roko
2 days ago
@Wombatz it was accidental, edited again
– Roko
2 days ago
add a comment |
3 Answers
3
active
oldest
votes
up vote
2
down vote
accepted
You are calling inputFilterText twice. Once within the print() and once before. This is causing the code to prompt for input twice before printing the second response.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thanks, I didn't even realize haha
– Roko
2 days ago
add a comment |
up vote
1
down vote
The problem is that you make a call to the inputFilterText
function twice. The first time the output is discarded. Causing input to be taken twice, but only showing a result once.
To fix it, remove the inputFilterText()
line. An example of working code.
import re
i=1
def inputFilterText():
inputRaw = input("input: ")
inputFiltered = re.sub(""[^a-zA-Z]+, "", inputRaw)
return inputFiltered
while i > 0:
print(inputFilterText())
Also, in future please send code as raw text, rather than screenshots.
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
add a comment |
up vote
1
down vote
Might I suggest using a variable here, you're not doing anything with the first filter call (this is why it's asking the first time) and the second one you're only printing.
while True:
txt = inputFilterText()
#do some stuff if needed
print(txt)
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
You are calling inputFilterText twice. Once within the print() and once before. This is causing the code to prompt for input twice before printing the second response.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thanks, I didn't even realize haha
– Roko
2 days ago
add a comment |
up vote
2
down vote
accepted
You are calling inputFilterText twice. Once within the print() and once before. This is causing the code to prompt for input twice before printing the second response.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thanks, I didn't even realize haha
– Roko
2 days ago
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
You are calling inputFilterText twice. Once within the print() and once before. This is causing the code to prompt for input twice before printing the second response.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
You are calling inputFilterText twice. Once within the print() and once before. This is causing the code to prompt for input twice before printing the second response.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 2 days ago
peterg
361
361
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
peterg is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thanks, I didn't even realize haha
– Roko
2 days ago
add a comment |
Thanks, I didn't even realize haha
– Roko
2 days ago
Thanks, I didn't even realize haha
– Roko
2 days ago
Thanks, I didn't even realize haha
– Roko
2 days ago
add a comment |
up vote
1
down vote
The problem is that you make a call to the inputFilterText
function twice. The first time the output is discarded. Causing input to be taken twice, but only showing a result once.
To fix it, remove the inputFilterText()
line. An example of working code.
import re
i=1
def inputFilterText():
inputRaw = input("input: ")
inputFiltered = re.sub(""[^a-zA-Z]+, "", inputRaw)
return inputFiltered
while i > 0:
print(inputFilterText())
Also, in future please send code as raw text, rather than screenshots.
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
add a comment |
up vote
1
down vote
The problem is that you make a call to the inputFilterText
function twice. The first time the output is discarded. Causing input to be taken twice, but only showing a result once.
To fix it, remove the inputFilterText()
line. An example of working code.
import re
i=1
def inputFilterText():
inputRaw = input("input: ")
inputFiltered = re.sub(""[^a-zA-Z]+, "", inputRaw)
return inputFiltered
while i > 0:
print(inputFilterText())
Also, in future please send code as raw text, rather than screenshots.
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
add a comment |
up vote
1
down vote
up vote
1
down vote
The problem is that you make a call to the inputFilterText
function twice. The first time the output is discarded. Causing input to be taken twice, but only showing a result once.
To fix it, remove the inputFilterText()
line. An example of working code.
import re
i=1
def inputFilterText():
inputRaw = input("input: ")
inputFiltered = re.sub(""[^a-zA-Z]+, "", inputRaw)
return inputFiltered
while i > 0:
print(inputFilterText())
Also, in future please send code as raw text, rather than screenshots.
The problem is that you make a call to the inputFilterText
function twice. The first time the output is discarded. Causing input to be taken twice, but only showing a result once.
To fix it, remove the inputFilterText()
line. An example of working code.
import re
i=1
def inputFilterText():
inputRaw = input("input: ")
inputFiltered = re.sub(""[^a-zA-Z]+, "", inputRaw)
return inputFiltered
while i > 0:
print(inputFilterText())
Also, in future please send code as raw text, rather than screenshots.
answered 2 days ago


CUZLOCKED
10811
10811
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
add a comment |
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
Sorry, I didn't know that I shouldn't
– Roko
2 days ago
add a comment |
up vote
1
down vote
Might I suggest using a variable here, you're not doing anything with the first filter call (this is why it's asking the first time) and the second one you're only printing.
while True:
txt = inputFilterText()
#do some stuff if needed
print(txt)
add a comment |
up vote
1
down vote
Might I suggest using a variable here, you're not doing anything with the first filter call (this is why it's asking the first time) and the second one you're only printing.
while True:
txt = inputFilterText()
#do some stuff if needed
print(txt)
add a comment |
up vote
1
down vote
up vote
1
down vote
Might I suggest using a variable here, you're not doing anything with the first filter call (this is why it's asking the first time) and the second one you're only printing.
while True:
txt = inputFilterText()
#do some stuff if needed
print(txt)
Might I suggest using a variable here, you're not doing anything with the first filter call (this is why it's asking the first time) and the second one you're only printing.
while True:
txt = inputFilterText()
#do some stuff if needed
print(txt)
answered 2 days ago
Jaba
6,502165092
6,502165092
add a comment |
add a comment |
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%2f53372927%2fprint-prints-only-every-second-input%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
2
delete
inputFilterText()
line, you never print the return value from every other try (including the first)– Chris_Rands
2 days ago
4
Please include your code as formatted text in your question. Pictures of code (or other text) are not appropriate.
– khelwood
2 days ago
Fixed it, sorry
– Roko
2 days ago
@Wombatz it was accidental, edited again
– Roko
2 days ago