Tagged Questions
The else tag has no wiki summary.
16
votes
4answers
981 views
Else clause on Python while statement
I've noticed the following code is legal in Python. My question is why? Is there a specific reason?
n = 5
while n != 0:
print n
n -= 1
else:
print "what the..."
Thanks.
11
votes
2answers
224 views
Inspiration and influence of the else clause of loop statements?
Python loop statements may have an else clause which is executed if and only if the loop is not terminated by a break. In other words, when the condition becomes False (with while) or when the ...
9
votes
3answers
206 views
else statement is seemingly ignored
void PacketRecord::determineAppProtocol()
{
if (ipProtocol == IP_PROTO_UDP)
{
std::istringstream ss(udpData);
std::string line;
if (getline(ss, line) && ...
8
votes
4answers
123 views
For … else loops / control of flow in PHP?
Python offers a for...else structure like this:
for value in i:
print value
else:
print 'i is empty'
What's the nearest equivalent to this in PHP?
Edit: see @Evpok's comment below - the ...
5
votes
2answers
227 views
PHP make if shorter
What is a true way to write like:
if ($variable == '(value1/value2/value3)' ) { }
It should work similar to:
if ($variable == 'value1' || $variable == 'value2' || $variable == 'value3') { }
Just ...
4
votes
5answers
117 views
Python If then Else style when getting values from Dicts
I often struggle with the following if/else syntax and I was hoping some people could give me some of their opinions as to what they think is more clear or if this violates any Pythonisms (I've ...
4
votes
3answers
1k views
jQuery hover fadeTo with three div's
I'm using this div fadeTo code from here, which fades one of two divs, depending on hover.
What I'd like to do it add a third option - and a third div called #maindiv - in this way: "If hovering over ...
3
votes
2answers
85 views
Is the `else:` correct/necessary in this Python program?
Is the line of else: correct/necessary in this Python program?
from random import randrange
for n in range(10):
r = randrange(0,10) # get random int in [0,10)
if n==r: continue # skip ...
3
votes
3answers
95 views
Why don't my nested if and else statements work?
All I want to be able to do is validate an email every time the user enters a new character into the input field. When the input field is empty, it shouldn't show anything, but when it contains ...
3
votes
7answers
158 views
Usage of if, else, and else if
What is the difference between:
if (expr1) {stmt}
else if (expr2) {stmt}
else if (expr3) {stmt}
else {stmt}
And the same code block written as:
if (expr1) {stmt}
if (expr2) ...
3
votes
2answers
118 views
Haskell 'else' parsing error
I'm having an parsing error on the input 'else' but I have no idea how to solve it. I'm still new to this haskell thing.
depot =
do
putStr ("Enter deposit amount: ")
deAmount <- getLine
let ...
3
votes
7answers
109 views
Is it bad to leave things on an else if?
Say you have only a limited number of possible conditions lets call them a,b,c,d and you are fairly sure any other possiblities ar impossible.
Is it better to do
if(a)
do_something();
else if(b)
...
3
votes
3answers
253 views
Shall I use guard clause, and try to avoid else clause?
I've read (e.g. from Martin Fowler) that we should use guard clause instead of single return in a (short) method in OOP. I've also read (from somewhere I don't remember) that else clause should be ...
3
votes
4answers
341 views
A follow up to the YES / NO control flow question I had earlier
I posted a question about how to get user input such as YES or NO to control the flow of a program using if else statements, I got a answer and now i'm a step closer to making this work, however ...
3
votes
3answers
386 views
Opposite of Python for … else
The following python code will result in n (14) being printed, as the for loop is completed.
for n in range(15):
if n == 100:
break
else:
print(n)
However, what I want is the ...
3
votes
4answers
102 views
Simplifying multiple echos
I have a full list of timezones in a select menu like so:
<option value="Pacific/Kosrae"> Pacific/Kosrae( +11:00 GMT ) </option>
<option value="Pacific/Kwajalein"> ...
2
votes
2answers
56 views
Display string if null value in db
I have the following table which displays the results of a match and the selections for that match for the signed in user. I want to display a text value in the selection.winner and selection.value ...
2
votes
5answers
66 views
if else simple beginner issue
Good day guys,
I've made a sweet favorites function with php mysql and ajax, and its working great. Now I want to show 'favorite' when favorite = 0 and show 'unfavorite' when favorite = 1
if ...
2
votes
3answers
131 views
if/elif/else statement help with money
Updated my new code at the bottom of the page as an answer.
So for my CS 170 class, we have to make a program that has user input for less than $10 and change is returned in the least amount of ...
2
votes
3answers
41 views
Checking for file existence
I have the following bat but it dosnt seem to work I want to check for a file name stoted in tom.txt, if it exists i want to do nothing, if however it dont exist i want to run the runme.bat
Echo ...
2
votes
1answer
120 views
Go Back to Start If no input is entered (Bat File) (#2)
This is a to follow-up question:
Go Back to Start If no input is entered (Bat File)
Now for another final Touch and my file is perfect :)
Here's the relevant code part:
:: Delete variable %F%
SET ...
2
votes
1answer
126 views
Define quadrant based on positive/negative values in two columns
I have a data set with two columns of positive and negative numbers. I would like to create a third column that reflects which quadrant they would appear in if plotted in Cartesian space.
For ...
2
votes
2answers
1k views
PHP elseif vs. else if [closed]
Possible Duplicate:
Are “elseif” and “else if” completely synonymous?
Hello!
Is there a best practice recommandation for using either of the two in PHP or are they ...
2
votes
6answers
225 views
Should 'else' be kept or dropped in cases where it's not needed?
This is a sort of trivial question but something I've been wondering about.
In terms of style (I assume the performance is identical), is it better to keep an 'else' in an if statement where it's not ...
2
votes
6answers
242 views
PHP unexpected elseif
I'm filtering some content on my website via country specific code, I'm trying to add else statements so it doesn't have to run each piece as individual code except whatever I try gives an error:
...
2
votes
2answers
151 views
What languages have a while-else type control structure, and how does it work?
A long time ago, I thought I saw a proposal to add an else clause to for or while loops in C or C++... or something like that. I don't remember how it was supposed to work -- did the else clause run ...
1
vote
4answers
53 views
MYSQL PHP while loop, do something if there aren't a given amount of rows returned
I'm trying to figure out the best way to do something like this. Basically what I want to do (in a simple example) would be query the database and return the 3 rows, however if there aren't 3 rows, ...
1
vote
5answers
63 views
conditions for If Else (with number of decimal places)
Is there a way to execute a piece of code depending on how many decimal places there are in a number. For instance, if the double was just 2.0 i would want to convert it to an integer, but if it were ...
1
vote
4answers
108 views
Multiple else if Statements in jQuery
$('#bar3').live('click', function() {
if($('#bar3').attr('class') == '0') {
console.log("closed")
} else if($('#bar1' && '#bar2').attr('class') ...
1
vote
1answer
53 views
MySql - DROP table 'whatever' if exist ELSE create table 'whatever'?
I simply want to drop the table 'whatever' if it exist and then recreate table 'whatever' in a single query if possible.
DROP TABLE IF EXISTS `whatever` ELSE
CREATE TABLE `whatever`
Any idea ?
1
vote
2answers
59 views
Confusion with `if` `else` and `while`
I have a code where it should check if the result equals to 8 it need to show something and if not it need to show something else and all of that happens inside of a while loop.
while ($row_fpages2 = ...
1
vote
1answer
41 views
jQuery if else statements and data()
I've been struggling over this for almost 5 hours and finally I've got a clue.
Here's a code that I'm using on my website:
jQuery(document).ready(function(){
...
1
vote
1answer
122 views
c# if else looping
i need some help in the if else part. For now, my code shows "if row=0, user not found". But i would like it to loop whereby if nothing is detected, continues looping until the event changes. How do i ...
1
vote
7answers
63 views
Do you see this breaking? any problems? simple php if elseif statement
I'm a total PHP newb, so there is probably a better way of outputting a row's class based on different variables.
Is this bad, and if it is why is it?
if ($variable1 > 0 && ...
1
vote
3answers
266 views
Block if without end if - VBA Error
This is a small snippet of the code I am writing. It seems to throw an "BLOCK IF WITHOUT END IF" error on the last line. I can't spot an error here, after consulted with this MSDN link
If Longs ...
1
vote
1answer
72 views
Is there any performance gain from using a switch statement over a bunch of if()else if() in javascript? [closed]
Possible Duplicate:
Javascript switch vs. if…else if…else
just curious if things will run faster or be laid out in cache nicer or something that might increase performance by ...
1
vote
2answers
40 views
Django {% with %} tags within {% if %} {% else %} tags?
So I want to do something like follows
{% if age > 18 %}
{% with patient as p %}
{% else %}
{% with patient.parent as p %}
...
{% endwith %}
{% endif %}
But Django is telling me ...
1
vote
2answers
161 views
Go Back to Start If no input is entered (Bat File)
Ok First have all i'm sorry for my poor english :)
Now for my problem
I'm trying to create a Script file with multiple choices and I ran into a problem.
If I don't enter an input (just press enter) ...
1
vote
3answers
133 views
PHP - Display No Code if PHP Value is Empty
I am using queries like this to pull in information from a database:
<p><strong>Show Description:</strong><br/><?php echo cimy_uef_sanitize_content(get_cimyFieldValue(1, ...
1
vote
3answers
109 views
Basic If/Else statement question
I'm getting a strange error: "syntax error, unexpected $end, expecting kEND" and it points to the final line of my code.
New to Ruby and not sure what I'm doing wrong here. Any help would be ...
1
vote
3answers
93 views
Does .net stop checking the rest of an IF statement if you use an and/or ( || / && )?
say you have something like:
int num = 0
then you do
if(num > 5 || num < 4)
{
...
}
it checks both, but what if you do
if(num < 4 || num > 5)
{
...
}
does it only check the ...
1
vote
2answers
501 views
jquery if else condition for css api
I have the below jquery statement
$(this).('span.section1').css('background','url("images/accordion_closed_left.png") no-repeat scroll 0 0 transparent');
How do I write a if else statement for the ...
1
vote
3answers
299 views
C++ If and if else error messages
I am making a collection of math functions. I used if statements to create error messages and cut down on user errors.. I don't think I did it right.
string error_0;
string error_i;
if (num1 == 0;) ...
1
vote
6answers
325 views
if then else loop problem delphi
I'm still a beginner and I have been trying to solve this problem by my self but I guess I 'm out of luck. I think it is probably quite simple but here's the deal.
I have 3 checkboxes. Each one ...
1
vote
4answers
270 views
Python: Caesar Cipher, If statement and else statement both True at the same time?
I pretty much have this solved but for some reason the first If statement and the else statement are both saying true for any capitalized letter inputs. So if the ASCII value lands between 65 and 90 ...
1
vote
1answer
76 views
Equal statement for Redirect
I am withdrawing from the database a page name and putting into the this equal statement:
// Redirect if not there
if ($db_client === $session_client) {
require("custom.php");
} else {
...
1
vote
4answers
70 views
Formatting time in PHP rows
I'm currently using this code:
if(mysql_num_rows($result2) > 0) {
$count=0;
$day = 1;
while ($row = mysql_fetch_array($result2, MYSQL_ASSOC)) {
echo "<b>";
...
1
vote
4answers
215 views
If statement and expressions question advice
I just did this question out of KN King's C Programming: A Modern Aprroach. It's not homework, I'm just teaching myself out of the book...
The following table shows the daily flights from one city ...
1
vote
3answers
510 views
Why is the “else” line invalid syntax?
I'm having this error:
File "zzz.py", line 70
else:
^
SyntaxError: invalid syntax
The line which causes the problem is marked with a comment in the code:
def FileParse(self, ...
1
vote
7answers
400 views
C++ If/else/nesting issues
I am trying to learn c++ and I am running into problems with my if/else statements.
I thought I had them down when I would nest them without opening and closing braces, but I tried with braces and I ...