[Solved] Should I use a code converter (Python to C++)? [closed]


Generally it’s an awful way to write code, and does not guarantee that it will be any faster. Things which are simple and fast in one language can be complex and slow in another. You’re better off either learning how to write fast Python code or learning C++ directly than fighting with a translator and figuring out how to make the generated code run acceptably.

0

solved Should I use a code converter (Python to C++)? [closed]