Which language to learn?

AussieDollar

Junior Member
Joined
Mar 7, 2015
Messages
144
Reaction score
55
I need a program that can recognize numbers on the screen and automatically click certain spots on the screen and write pre written sentences.

Which programming language would you recommend?
 
+1 for Python, it's also quite easy to learn compared to other languages
 
I'm trying to learn Python as well, I would be cool if anyone can actually recommend some courses/YT had actually helped them out - there's so many resources.
 
If you need ocr then you can use pytesseract with python. If you’re looking for specific numbers you can just use template matching with opencv
 
+1 python.
I can't imagine another language where you'd be able to do this quicker in.
Plenty of libraries to do heavy lifting.
 
I recommend Python. Python is a high-level programming language interpreted for general programming. One of the most popular programming languages among Python programmers is its growing popularity. This programming language is used to do many things, including artificial intelligence programming, web development, building mobile and desktop applications.
 
I have made some bots that recognize images in the screen and click on them with autoit very simple language for small bots and you can even compile them to exe files
 
You can create such program in one hour with python and bs4
 
I'm trying to learn Python as well, I would be cool if anyone can actually recommend some courses/YT had actually helped them out - there's so many resources.

My first ever Python learn video was this:
, that was maybe three years ago. It teaches you al you need to know, with a nice "real world" example.

The basics in Python are easy, so after that, I would just try to program what you want to do. That way you learn the most and you know much better what to google for.
 
Back
Top