Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
All of this can be replaced by just one line output = "*""_" * length since Python allows multiplying a string by a number. (It has to be below the definition of length)
All of this can be replaced by just one line output = "*" * length since Python allows multiplying a string by a number. (It has to be below the definition of length)
All of this can be replaced by just one line output = "_" * length since Python allows multiplying a string by a number. (It has to be below the definition of length)