Category "if-statement"

Create a zip with only .pdf and .xml files from one directory

I would love to know how i can zip only all pdfs from the main directory without including the subfolders. I've tried several times changing the code, without a

UEFI function running wrong part in if else

I am writing a UEFI function which used to show status. But when I give it a EFI_STATUS type "2" as "state" argument, it execute "else" part, instead of "state

Assign within if statement Python

Is there a simpler alternative than res = returns_value_or_none(arg) if res: do_something_with(res) or if returns_value_or_none(arg): do_something_

VLOOK-up without N/A and 0 results (extraction from 2 sheets)

I am trying to create an if-vlookup that retrieves data from 2 sheets with following specs: if the retrieve from the 1st sheet shows N/A and 0 results than vloo

Using zipfile to archive directory contents while skipping files from list

I'm using zipfile to create an archive of all files in a directory (recursively, while preserving directory structure including empty folders) and want the proc

Can we write IF statement without else in javascript

I wrote some code to create an simple todo app in angular js. I have the following function code to remove the tasks from the list. Javascript code $scope.del

useState and if statement causing Error: Too many re-renders. React limits the number of renders to prevent an infinite loop

What I'm attempting to create is a React component which conditionally renders when the value of the prop boxToggle is true, and also returns null when the user

How do I use a query to get a date from an array formula?

On sheets, I'm using this formula to sum hours to a specific month from a drop-down menu. =QUERY('Form responses 1'!H2:L, "Select L, Sum(K) WHERE L is not NUL

IF Statements and Conditions for iMacros Firefox

So I'm trying to make a macro to catch Pokemon from maps in this game but there if you encounter a Turf War it will show this image: As you can see the click

Looping through a list in Python

Trying to loop through a list of numbers so that the output reads the result on a seperate line. Instructions Given: - Store numbers 1-9 in a list. - Loop thro

python if user input contains string

Very basic question. We have the code: a = input("how old are you") if a == string: do this if a == integer (a != string): do that Obviously it d

Nested if statements in cobol

I am trying to use nested if statements in Cobol. As far as I can tell I am following the style guides, but keep receiving the error: file_name.cob:64: Error: s

Input and output values for php into the browser?

I just started my module on php for school, having completed Javascript two months ago I am familiar with a lot of the elements but a bit rusty. Basically I set

Python - Convert a roman numeral to an integer

I've tried the following Python 3 code that transform from Roman to Integer. The code is working fine at a glance. But there are certain problem happened when

Error: 'else' without 'if'

Getting an else without if statement: import java.util.Scanner; public class LazyDaysCamp { public static void main (String[] args) { int temp

Idiomatic way to check for non-zero

When I wish to check if a value is 0 in C, how is it idiomatically done? if (!num) if (num == 0)

Using if(isset($_POST['submit'])) to not display echo when script is open is not working

I have a little problem with my if(isset($_POST['submit'])) code. What I want is some echos and a table to not appear when the script is open but I do want it t

Open new page using if else statement to check to see if an html form element is equal to a certain word

How do I open new page using an if else statement to check to see if an html form element is equal to a certain word or phrase. Basically, I have a form and if

Assignment in an if statement

I have a class Animal, and its subclass Dog. I often find myself coding the following lines: if (animal is Dog) { Dog dog = animal as Dog; dog.Name

Multiple If-else or enum - which one is preferable and why? [closed]

Here is the original code: public class FruitGrower { public void growAFruit(String type) { if ("wtrmln".equals(type)) {