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
0
Explanation:
a value of x =4
a value of y=6
Answered by
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