python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Keep getting warning "Suggest parentheses around '&&' within '||' for C program
printf(" 1| %d | %d | %d | %d | %d\n",
((coffee_strength == 'm' || coffee_strength == 'M') &&
(coffee1_type == 'l' || coffee1...
ChecksOverStripes
Votes: 0
Answers: 2
A question about the use of parenthesis with arguments
def calculate_pythagoras():
pythagoras_list = list()
for i in range(1, 101):
for j in range(1, 101):
c = (i ** 2 + j ** 2) ** 0.5
if (c == int(c)):
...
bluntknife
Votes: 0
Answers: 1
How can i make group 1 differ based on content in the whole string?
In our Python system, I'm trying to isolate the second part of a size to make sure i can save the values separately.
As i got data in tons of different ways i have to take a lot of scenarios into cons...
Steffen Mandrup
Votes: 0
Answers: 1
R shiny app reads data with parentheses in attribute name
i have a problem with following app, my goal is to analyze data, from input dataset, which has a attributes name including parentheses. When i try to work with that attribute later, it´s looking for f...
fararmaoholcezoltar
Votes: 0
Answers: 1