0
Why firstName is a better descriptive identifier whereas xyz is not..??
2 odpowiedzi
+ 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..!