Shahrayar123 / Python-Projects

Basic Python projects, good first issue
368 stars 338 forks source link

[Minor] Update Towers of Hanoi.py #113

Open Yajus114 opened 1 year ago

Yajus114 commented 1 year ago
  1. Changed fstring formatting from print("text {var} text".format(var=value)) to a smaller, simpler and more readable print(f"text {val} text")
  2. Removed redundant brackets around while-loop in line 60
  3. Minor additional formatting