0
Why firstName is a better descriptive identifier whereas xyz is not..??
2 RĂ©ponses
+ 1
Imagine you make a complex code.
Then you open it for editing six months later.
Imagine also that you are working with other people.
what is better?
âą name = input()
print(name)
âą xyz = input()
print(xyz)
0
Ohh ok I understood...thank you..!