How does pyaramorph (Arabic morphological analyzer) work? [closed] - python-2.7

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have downloaded pyaramorph (Arabic morphological analyzer) on python , but I do not know how to use it. Could someone explain to me how can I get it to work?
If I have articles and I want to use this morphological tools to know how many (root) words I found it?

Open file pyaramorph.py, in editor change line 262 from:
s = raw_input("$ ")
to:
s = raw_input("$ ").decode(sys.stdin.encoding or locale.getpreferredencoding(True))
Or better follow what authors say here.

Related

Just started out learning to code and it won't execute [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed last year.
Improve this question
So i am watching youtube tutroials and trying to write hello world but i am already failing
Here is an screenshot
enter image description here
Why won't it execute?
Any help would be really welcome (From Belgium so excuse my broken english)
You're on Windows. Instead of a.out, the default name for gcc is a.exe. You can see that in the directory listing on the left.

How to Extract Text from a String in Google Sheets [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have text that needs to be extracted from a string into certain cells based on guide text within the string.
I have tried using various methods but these methods do not typically function when guide text is moved or missing which can occur with the input process.
https://docs.google.com/spreadsheets/d/1eNXa0tTzYVXVrapc8mt-V83PrkKDZwEXp1EQMYGmsRU/edit?usp=sharing
The result should output the correct data text following the guide text.
=ARRAYFORMULA(IFERROR({
INDEX(SPLIT(REGEXEXTRACT(A2:A&"(", "\(1\)(.+)\("), "("),,1),
INDEX(SPLIT(REGEXEXTRACT(A2:A&"(", "\(2\)(.+)\("), "("),,1),
INDEX(SPLIT(REGEXEXTRACT(A2:A&"(", "\(3\)(.+)\("), "("),,1)}))

download videos from youtube [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
please how can i get the link of download videos from youtube in swift language by the api?
or on the another way?
please help
thank you very much
You can use YoutubeSourceParserKit. Follow the example but instead of playing the video save the URL with the method of your choice (it NSURLSession, Alamofire.download or whatever you are using for http).

How to get pixel values of text from image using OopenCV? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I intend to get the text (Google) pixel value from a picture, but I don't know how to do that, can someone help me please?
the Content of img
============================
Google(谷歌)
Apple(苹果)
FACEBOOK
============================
You'll need to use ocr. Opencv has some ocr built in. You can find some example code here: https://opencv-code.com/tag/ocr/

How I can set a form pop out when I click a button in VC++2010? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am working on a homework; I put everything in a folder and upload to a site. Please download it and help.
I follow my teacher example, but it must have something missing. My code is able to be compiled, but does not able to pop out the form as I excepted.
Please help ! Thanks
Code link http://sharesend.com/xkpm2
I found the error. I forget to add
myForm2->ShowDialog()
to show my form