<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Questions And Answers Forum - Recent Posts				            </title>
            <link>https://quesnans.com/forum/</link>
            <description>Questions And Answers Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 13 Jun 2026 15:38:38 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>How to set Python Path &amp; run Python in Command Prompt?</title>
                        <link>https://quesnans.com/community/python/how-to-set-python-path-run-python-in-command-prompt/#post-36</link>
                        <pubDate>Sat, 08 Apr 2023 18:53:23 +0000</pubDate>
                        <description><![CDATA[How to set Python Path &amp; run Python in Command Prompt?]]></description>
                        <content:encoded><![CDATA[<p><strong>How to set Python Path &amp; run Python in Command Prompt?</strong></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/community/python/how-to-set-python-path-run-python-in-command-prompt/#post-36</guid>
                    </item>
				                    <item>
                        <title>How to resolve AttributeError: module &#039;smart_open&#039; has no attribute &#039;local_file&#039; while importing gensim?</title>
                        <link>https://quesnans.com/forum/python/how-to-resolve-attributeerror-module-smart_open-has-no-attribute-local_file-while-importing-gensim/#post-35</link>
                        <pubDate>Sat, 08 Apr 2023 18:50:41 +0000</pubDate>
                        <description><![CDATA[How to resolve AttributeError: module &#039;smart_open&#039; has no attribute &#039;local_file&#039;  while importing gensim?
Code:
import gensim
from gensim import corpora
Error:
AttributeError           ...]]></description>
                        <content:encoded><![CDATA[<p><span>How to resolve </span><strong>AttributeError: module 'smart_open' has no attribute 'local_file'</strong><span>  while importing gensim?</span></p>
<p><strong>Code:</strong></p>
<pre contenteditable="false"><code>import gensim
from gensim import corpora</code></pre>
<p><strong>Error:</strong></p>
<pre contenteditable="false"><code>AttributeError                            Traceback (most recent call last)
&lt;ipython-input-29-a29f5eabd8f4&gt; in &lt;module&gt;
     85 # use the following command in anaconda prompt with the admionistrator privileges to install gensim
     86 # conda install -c conda-forge gensim
---&gt; 87 import gensim
     88 from gensim import corpora
     89 

~\Anaconda3\lib\site-packages\gensim\__init__.py in &lt;module&gt;
      3 """
      4 
----&gt; 5 from gensim import parsing, corpora, matutils, interfaces, models, similarities, summarization, utils  # noqa:F401
      6 import logging
      7 

~\Anaconda3\lib\site-packages\gensim\parsing\__init__.py in &lt;module&gt;
      2 
      3 from .porter import PorterStemmer  # noqa:F401
----&gt; 4 from .preprocessing import (remove_stopwords, strip_punctuation, strip_punctuation2,  # noqa:F401
      5                             strip_tags, strip_short, strip_numeric,
      6                             strip_non_alphanum, strip_multiple_whitespaces,

~\Anaconda3\lib\site-packages\gensim\parsing\preprocessing.py in &lt;module&gt;
     40 import glob
     41 
---&gt; 42 from gensim import utils
     43 from gensim.parsing.porter import PorterStemmer
     44 

~\Anaconda3\lib\site-packages\gensim\utils.py in &lt;module&gt;
     43 from six.moves import range
       44 
---&gt; 45 from smart_open import open
     46 
     47 from multiprocessing import cpu_count

~\Anaconda3\lib\site-packages\smart_open\__init__.py in &lt;module&gt;
     26 from smart_open import version
     27 
---&gt; 28 from .smart_open_lib import open, parse_uri, smart_open, register_compressor
     29 from .s3 import iter_bucket as s3_iter_bucket
     30 

~\Anaconda3\lib\site-packages\smart_open\smart_open_lib.py in &lt;module&gt;
     35 
     36 from smart_open import compression
---&gt; 37 from smart_open import doctools
     38 from smart_open import transport
     39 from smart_open import utils

~\Anaconda3\lib\site-packages\smart_open\doctools.py in &lt;module&gt;
     19 
     20 from . import compression
---&gt; 21 from . import transport
     22 
     23 PLACEHOLDER = '    smart_open/doctools.py magic goes here'

~\Anaconda3\lib\site-packages\smart_open\transport.py in &lt;module&gt;
     20 NO_SCHEME = ''
     21 
---&gt; 22 _REGISTRY = {NO_SCHEME: smart_open.local_file}
     23 
     24 

AttributeError: module 'smart_open' has no attribute 'local_file'</code></pre>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/python/how-to-resolve-attributeerror-module-smart_open-has-no-attribute-local_file-while-importing-gensim/#post-35</guid>
                    </item>
				                    <item>
                        <title>When iterating over a list, why it is better to use &quot;for&quot; instead of &quot;while&quot;?</title>
                        <link>https://quesnans.com/forum/python/when-iterating-over-a-list-why-it-is-better-to-use-for-instead-of-while/#post-34</link>
                        <pubDate>Sat, 08 Apr 2023 18:48:05 +0000</pubDate>
                        <description><![CDATA[When iterating over a list, why it is better to use &quot;for&quot; instead of &quot;while&quot;?]]></description>
                        <content:encoded><![CDATA[<p><strong>When iterating over a list, why it is better to use "for" instead of "while"?</strong></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/python/when-iterating-over-a-list-why-it-is-better-to-use-for-instead-of-while/#post-34</guid>
                    </item>
				                    <item>
                        <title>RE: How to resolve Top Link Bar not Highlighted Properly in Sharepoint?</title>
                        <link>https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/#post-33</link>
                        <pubDate>Sat, 08 Apr 2023 18:42:24 +0000</pubDate>
                        <description><![CDATA[@devilrkdf 
Thanks a lot for your kind reply... it really works for Pages not for Lists... Like Documents Library, Calendar, Tasks etc... What should I do for that... Please advise.]]></description>
                        <content:encoded><![CDATA[@devilrkdf 
Thanks a lot for your kind reply... it really works for Pages not for Lists... Like Documents Library, Calendar, Tasks etc... What should I do for that... Please advise.]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/#post-33</guid>
                    </item>
				                    <item>
                        <title>Answer to: How to resolve Top Link Bar not Highlighted Properly in Sharepoint?</title>
                        <link>https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/#post-32</link>
                        <pubDate>Sat, 08 Apr 2023 18:38:08 +0000</pubDate>
                        <description><![CDATA[Hi,
   I found that for proper highlighting of the tabs, it is not necessary to add the filename like default.aspx to the link if the site is in the same sitecollection. When you type in th...]]></description>
                        <content:encoded><![CDATA[<p><span>Hi,</span></p>
<p><span>   I found that for proper highlighting of the tabs, it is not necessary to add the filename like <strong>default.aspx</strong> to the link if the site is in the same <strong>sitecollection</strong>. When you type in the link, it won't highlight, but if you use the '<strong>browse</strong>' button next to the link field, which presents the '<strong>Select a link -- Web page dialog</strong>' and browse for any available site or page, that will result in proper highlighting.<br /><br />In order to browse to other sites in the collection, you need to click the '<strong>up</strong>' button in that dialog a few times.</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>devilrkdf</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/#post-32</guid>
                    </item>
				                    <item>
                        <title>How to resolve Top Link Bar not Highlighted Properly in Sharepoint?</title>
                        <link>https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/#post-31</link>
                        <pubDate>Sat, 08 Apr 2023 18:37:13 +0000</pubDate>
                        <description><![CDATA[Hi Every one...i am new in sharepoint i am getting a issue in my sharepoint template.. my templates Top link bar is not highlighted properly when they are selected...My Site structure is giv...]]></description>
                        <content:encoded><![CDATA[<p><span>Hi Every one...</span><br /><br /><span>i am new in </span><strong>sharepoint<span> </span></strong><span>i am getting a issue in my </span><strong>sharepoint template</strong><span>.. my </span><strong>templates<span> </span></strong><span>Top link bar is not highlighted properly when they are selected...</span><br /><br /><span>My Site structure is given below:</span><br /><span>1- Home</span><br /><span>2- News (List)</span><br /><span>3- Calendar (List)</span><br /><br /><span>Please advise.</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/#post-31</guid>
                    </item>
				                    <item>
                        <title>Answer to: Transformation is which type of object in MicroStrategy?</title>
                        <link>https://quesnans.com/forum/microstrategy/transformation-is-which-type-of-object-in-microstrategy/#post-30</link>
                        <pubDate>Sat, 08 Apr 2023 18:17:07 +0000</pubDate>
                        <description><![CDATA[Transformation is a Schema object in MicroStrategy.]]></description>
                        <content:encoded><![CDATA[<p><strong>Transformation<span> </span></strong><span>is a </span><strong>Schema object</strong><span> in </span><strong>MicroStrategy</strong><span>.</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/transformation-is-which-type-of-object-in-microstrategy/#post-30</guid>
                    </item>
				                    <item>
                        <title>Transformation is which type of object in MicroStrategy?</title>
                        <link>https://quesnans.com/forum/microstrategy/transformation-is-which-type-of-object-in-microstrategy/#post-29</link>
                        <pubDate>Sat, 08 Apr 2023 18:16:43 +0000</pubDate>
                        <description><![CDATA[Transformation is which type of object in MicroStrategy?]]></description>
                        <content:encoded><![CDATA[<p>Transformation is which type of object in MicroStrategy?</p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/transformation-is-which-type-of-object-in-microstrategy/#post-29</guid>
                    </item>
				                    <item>
                        <title>Answer to: Which Engine generates SQL in Microstrategy?</title>
                        <link>https://quesnans.com/forum/microstrategy/which-engine-generates-sql-in-microstrategy/#post-28</link>
                        <pubDate>Sat, 08 Apr 2023 18:13:06 +0000</pubDate>
                        <description><![CDATA[Answer is option b. SQL Engine generates SQL in Microstrategy.]]></description>
                        <content:encoded><![CDATA[<p><span><strong>Answer </strong>is <strong>option b</strong>. <strong>SQL Engine</strong> generates <strong>SQL </strong>in </span><strong>Microstrategy.</strong></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/which-engine-generates-sql-in-microstrategy/#post-28</guid>
                    </item>
				                    <item>
                        <title>Which Engine generates SQL in Microstrategy?</title>
                        <link>https://quesnans.com/forum/microstrategy/which-engine-generates-sql-in-microstrategy/#post-27</link>
                        <pubDate>Sat, 08 Apr 2023 18:12:48 +0000</pubDate>
                        <description><![CDATA[Which Engine generates SQL in Microstrategy?
Options:-
a. Query Engineb. SQL Enginec. Analytical Engined. All of the above]]></description>
                        <content:encoded><![CDATA[<p>Which<span> </span><strong>Engine<span> </span></strong>generates<span> </span><strong>SQL<span> </span></strong>in<span> </span><strong>Microstrategy</strong>?</p>
<p>Options:-</p>
<p><span>a. Query Engine</span><br /><span class="text_exposed_show">b. SQL Engine<br />c. Analytical Engine<br />d. All of the above</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/which-engine-generates-sql-in-microstrategy/#post-27</guid>
                    </item>
							        </channel>
        </rss>
		