Computer Science, asked by Anonymous, 1 year ago

X= 'I love you'
Print(x)
Please give me its output , if u learning python.....

Answers

Answered by Anonymous
0

Hi

First of all I wanna clear that python is case sensitive, that means "Ajay" and "ajay" are different things for python.

so.. in your code you have defined X and used x in "Print"

correct code is:

X= 'I love you'

print(X)


Anonymous: Thnx
Similar questions