Cursos
Cursos
Compilador de Código
Compilador de Código
Debatir
Precios
Teams
Iniciar sesión
Registrarse
Menu
Sesiones de PyR
Buscar
Buscar
Haz una pregunta
Haz una pregunta
In svg rectangle what is x and y?????
<svg>x
y
0 Votos
2 Respuestas
7th Apr 2021, 3:35 PM
Mukesh.G
can we assign value 0 in index x in array
c++
0 Votos
11 Respuestas
5th Feb 2020, 4:37 AM
vishal shivhare
Why its giving error? And not increamenting x twice?
java
1 Voto
5 Respuestas
24th Mar 2020, 9:46 PM
Ana
l want to program code that compare two values x and y , return 1 if x is greater than y else return 0 if x is equal to y or else return -1 if x less than y . Then program must accept user input
function-arguments
python
0 Votos
6 Respuestas
13th Oct 2016, 8:20 AM
James T Togara
x = [1,2,3,4,5] x.append(x[:]) print(len(x)) # output:6 # i was thinking the len should be 10 why 6?
python3
0 Votos
3 Respuestas
8th Oct 2021, 11:20 AM
Khalif Baby👶
#include <stdio.h> //function declaration int factorial(int num); int main() { int x = 5; printf("The factorial o
pleasehelp
0 Votos
2 Respuestas
2nd May 2019, 6:57 AM
Rahul Jaiswal
How many times will the following loop work? int x = 0; int y = 5; while (x < y) { System.out.println("Hello"); x++; }
o
0 Votos
5 Respuestas
5th May 2022, 6:00 AM
jayson abion
В одном из уроков был пример int x = 10 ; double = 20 ; Оба числа целые ,причем сдесь double ?
doubl
int
1 Voto
2 Respuestas
21st Jun 2018, 10:07 AM
Kisliy
int x; x +=10; spits out 4309688. Explanation?
c++
operators
2 Votos
2 Respuestas
21st May 2017, 11:27 PM
Sohn Jmith
def add(x, y): return x + y def do_twice(func, x, y): return func(func(x, y), func(x, y)) a = 5 b = 10 print(do_twice(add, a, b))
functions
python
return
1 Voto
6 Respuestas
29th Jul 2016, 10:31 AM
Rupam Das
How I give the value of name to x
html
javascript
0 Votos
3 Respuestas
21st Jul 2023, 1:39 PM
Raj Singh
def add(x, y): return x + y def do_twice(func, x, y): return func(func(x, y), func(x, y)) a = 5 b = 10 print(do_
funcionea
1 Voto
2 Respuestas
23rd Apr 2019, 6:42 PM
Wander Anime
Can this hold true ? If a number x has no divisor in the interval [2,x/2] , then x is prime.
c
c++
java
1 Voto
7 Respuestas
21st Jan 2017, 11:03 AM
WONDE-TOM
What the expression " x += 1" means?
regular-expressions
0 Votos
3 Respuestas
21st Jun 2017, 4:52 AM
Vishal Suthar
What is the out put int X = 3; int y= xxy; console . write line (x+"y+")
c#
operators
-1 Voto
4 Respuestas
10th Aug 2016, 9:34 AM
Rami Salim
In python3. X what is the solutino of (8+4)/2
code
1 Voto
3 Respuestas
8th Jul 2020, 12:05 PM
Raju Baghel
Why does this only output the x value??
code
ruby
0 Votos
3 Respuestas
7th Nov 2016, 4:52 AM
Nayomal
How can i store the value of x ?
html
html5
javascript
2 Votos
1 Respuesta
7th Feb 2019, 2:07 PM
DryUndead
Посчитать значение косинуса в точке X через ряд Тейлора. X – это комплексное число. Неточность вычисления меньше 0.0001.
c\c++
-1 Voto
2 Respuestas
7th Nov 2017, 10:29 AM
Tsar1k
How can I change x Axis to range -10 to 10
matplotlib
python
9 Votos
4 Respuestas
5th Apr 2021, 4:24 PM
Oma Falk
#include <stdio.h> void main() { float x = 0.1; if (x == 0.1) printf("Sanfoundry"); else printf("Advanced C Classes"); }
c
c++
2 Votos
3 Respuestas
16th May 2020, 12:56 AM
𝒱𝑒𝓃𝑜𝓂𝑜𝓊𝓈
Why does x also increase when we print y?
java
operators
0 Votos
5 Respuestas
11th Jul 2018, 4:07 PM
Chris Welham
Why do In-place operators allow you to write code like 'x = x + 3' as 'x += 3'?
operators
1 Voto
2 Respuestas
14th May 2018, 11:49 AM
Jujar Panesar
how to retrieve column wise data from list, eg 2nd column from x x = [ [1 , "vimal" , 1111] , [2 , "abhi" , 2222] , [3 , "ray
python
0 Votos
2 Respuestas
13th Aug 2020, 2:17 PM
Ritik Sengar
Suppose that x is 1. What is x after the evaluation of the following expression? (x > 1) && (x++ > 1)
java
2 Votos
3 Respuestas
18th Nov 2020, 3:45 PM
Zaina Fannana
Are there effective methods for memorizing? If so, share your methods.
=
int
int()
new
x
5 Votos
3 Respuestas
30th Jun 2019, 3:42 PM
Fsg So
A C++ Program To Swap Two Numbers x and y if x is greater than y. Output both numbers
c++
0 Votos
1 Respuesta
30th Apr 2020, 9:45 AM
Nathaniel Kwaku Awenate
Didnt understand the second fornatted string code. Console.WriteLine("x = {0}; y = {1}", x, y); Why x & y is 0 & 1?
c#
output
1 Voto
3 Respuestas
18th Aug 2017, 12:39 PM
Akhi Jetra
#include <iostream> using namespace std; int main() { int x = 15/(3*(5/3)); cout << x; return 0;} D output wz 5 hw
operators
3 Votos
9 Respuestas
29th Mar 2018, 6:32 AM
JeClives
we initialized x to 5 .. then we used the method addOneTo(x) that increments x by 1. The output stays 5 why????
java
reference-types
value-types
2 Votos
2 Respuestas
11th Nov 2018, 8:28 AM
Liza BOUMALI
What is the output of this code? list = [2, 3, 4, 5, 6, 7] for x in list: if(x%2==1 and x>4): print(x) bre
python
2 Votos
20 Respuestas
14th Sep 2020, 4:21 PM
Anas Emad
Why a and b interchange for x and y
functions
0 Votos
2 Respuestas
29th May 2020, 8:41 AM
SATYANSH MITTAL
someone help me i have a problem this code already put x = y and will not
=
a
already
and
code
have
help
i
me
not
problem
put
someone
this
will
x
y
0 Votos
1 Respuesta
19th Dec 2020, 7:20 PM
gleicielle camargo
if x is a float and I have the usual increment x++, will x be increased by 1, or by something else?
c++
data-types
1 Voto
6 Respuestas
15th Jun 2016, 1:37 PM
naghree
Why this code says x not defined in line 5
functions
2 Votos
4 Respuestas
15th Apr 2020, 7:32 AM
Jaweed
Help me to code it x = (r+7)**2 r is in range (1,18) Find the sum of all the values of x. For e.g. if r is 1, x=64 If r is 2, x
(r
=
code
helpme
itx
to
-2 Votos
2 Respuestas
7th Jul 2020, 9:57 PM
Amitabh Pandey
what is meaning of x =+ 1 ??
javascript
-2 Votos
2 Respuestas
5th Aug 2017, 10:05 AM
帛融蔡
C++ program to sum up from x to y
c++
-1 Voto
3 Respuestas
27th Aug 2018, 6:33 PM
Junaid Bashir
What is the result of this x=a x*=3 print x
jomi
0 Votos
6 Respuestas
20th Feb 2021, 6:37 AM
Jomiloju olopade
JS how to increase a value by x onclick
experimenting
html
increase+
javascript
learning
web
1 Voto
1 Respuesta
25th Jul 2019, 5:02 AM
Ginfio
Replace consecutive repeating character with x in string c#
c#
0 Votos
1 Respuesta
7th Sep 2020, 3:42 PM
MOHIT TAWARE
def my_func(x): assert x > 0 , "Error!" print(x)
assertions
0 Votos
2 Respuestas
21st Aug 2019, 5:01 PM
Rupal Raut
What is the diffrence between range()and x range() function?
range
xrange
1 Voto
3 Respuestas
18th Dec 2017, 4:38 PM
lokesh reddy
I don't understan this operator %= why the result is 3 for this expression? int x = 15; int y = 6; Console.WritLine(x %= y);//output 3
c#
0 Votos
9 Respuestas
15th Jun 2016, 5:53 PM
Tommaso
Fill in the blanks to print the values of the x variable 5 times.
java
loops
1 Voto
16 Respuestas
30th Mar 2017, 9:14 PM
Washington de Jesus
What does f(31415927) return, for the following function definition?def f(x): d=0 while x > 1: (x,d) = (x/2,d+1) return(d)
python3
0 Votos
4 Respuestas
16th Feb 2018, 3:16 AM
I Am a Baked Potato
carre () : une fonction qui recoit un entier x et retourne le carree de x en langage php
merci
0 Votos
1 Respuesta
3rd Mar 2022, 5:18 PM
dan arcadus yakoudou
[Solved] Why is this output 27 when #define x 5+2
c++
define
1 Voto
5 Respuestas
14th Sep 2018, 4:54 AM
Philip
how to check x and y axis of screen touch
javascript
1 Voto
5 Respuestas
10th Mar 2021, 3:40 AM
Michael
Correct 3D Rotation Along Y and Z Axis? X is Perfect
3d
axis
canvas
cuboid
help
javascript
js
rotation
6 Votos
3 Respuestas
28th Jun 2018, 3:07 AM
Andre Daniel
Haz una pregunta
Haz una pregunta
Haz una pregunta
Haz una pregunta
< Anterior
1
...
7
8
9
...
18
Siguiente >
En tendencia hoy
Issue with Sololearn Module Quiz Despite Correct Answers
1 Votes
Remove
0 Votes
I need help to solve this
0 Votes
Engineer Cloud
0 Votes
Project
0 Votes
Lua?
1 Votes
Hey what the research process order for them that I am telling you please order them and tell me answer
0 Votes
by getting subscription will it help to me be a pro in python is it appropriate app? please guide me
0 Votes
Ayuda para insertar la imagen de portada y las melodías a mi álbum alguien sabe cómo
0 Votes