Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Error - Syntactical Remorse

Error - Syntactical Remorse

Error - Syntactical Remorse has asked 1 questions and find answers to 15 problems.

Stats

330
EtPoint
95
Vote count
1
questions
15
answers

About

I am just someone with a degree in Copy & Paste studies from the University of Stack, located in Overflow City.

Few notes:

  • Wanna git gud at python? I recommend Fluent Python
  • Like dark theme? Checkout Dark Theme for Stack Overflow.

Remember, just because your code gets the right output doesn't mean the code is right:

class console(object):
    def write(self, text: str) -> None:
        print(text, end="")

def main() -> None:
    message: str = str("Hello World")

    message_letters: list = list(message)

    for i in range(0, len(message_letters), 1):
        console().write(message_letters[i])
    console().write("\n")

if __name__ == "__main__":
    main()