Computer Science, asked by subratkashyap84, 8 months ago

What will be the output of following code?
X, Y=4,6
print("Value of x = , x)
print("Value of y - y)​

Answers

Answered by kartiktiwari79
0

Explanation:

a value of x =4

a value of y=6

Answered by gaganadithyareddy9
0

Answer:

You will get an error

Explanation:

You get an error because the quotes are not closed in both the print statements... Another error you must keep a comma after the quotes of 2nd print statement...

The correct statements are:

X, Y = 4, 6

print("Value of x = ", x)

print("Value of y - ", y)

# HOPE THIS HELPS YOU

# MARK ME AS BRAINLIEST

Similar questions