Hi. Ex-certified Java Architect here (like 15 years ago, so I'm very very out of touch with latest developments in the world of programming languages, but literally, they're all fundamentally the same, as Loerpert points out - learn one, you can learn them all. I even did a whole module at university where, using maths, we proved that all programming languages are functionally identical). The big question is... have you learned how to build effecient/effective/maintainable software, or have you learned some basics of how to create a few methods and procedures etc?
If you're into C++, or any other OO (object oriented) languages, then theres tons of seminal books out there on modelling and describing systems in objects, use of interfaces etc. There's great books on key patterns for software. There's books on algorithms and designing, predicting and assessing (big O notation etc) their performance. There's books on using predicate logic to define a software system, and prove its correctness before even typing a single line of code. There's books on test driven development. Books on using scaffolding to accelerate development. Books on using database-design driven coding.
Basically, when looking at full featured OO 4th gen languages like C++, Java, C# etc, there's no limit to what you can learn, they are as wide and deep as any ocean, you'll never learn it all.
But if your interests are not in that side of stuff, or in high-performing/efficient code (such as VSTs would ideally have), Python is a great place to be for creating scripts and small applications. Personally I find its weak typing and lack of enforced OO a real troublesome thing (when it comes to software architecting and maintainability), but Python is the number one most popular language right now for a reason, it's easy to learn, relatively fast for a scripted uncompiled language, and there's tons of cutting edge libraries for it, for things like machine learning.
A couple of years ago I did the google machine learning course online, its free and fun:
https://developers.google.com/machine-learning/crash-course