Open MartinThoma opened 2 years ago
input() does the same as input(""), but has less clutter
input()
input("")
# Bad input("") # Good input()
Explanation
input()
does the same asinput("")
, but has less clutterExample