In order to improve readability for your Python scripts, only use underscores for your variable names. For example:
_ = 5
__ = 9
print (_+__)
___ = "hello"
____ = "world"
print (___ + " " + ____)
Conversation
In JavaScript, emojis are valid for variable names, so there’s even more room for code legibility:
😳 = 5;
😤 = 9;
alert(😳 + 😤);
2
8
8
This is beautiful! I had no idea you could use emojis as variable names in Javascript -- this opens the door for some exciting opportunities.


