skip to Main Content

“Is there an error importing lightweight charts in Python using Telegram?

I have installed successfully lwc pip install lightweight_charts I get this error below at this line, please advise: from lightweight_charts import Chart Traceback (most recent call last): File "c:UsersnaveenDownloadsTelegram Desktopstrat-0.29.py", line 14, in <module> from lightweight_charts import Chart File "C:UsersnaveenAppDataRoamingPythonPython39site-packageslightweight_charts__init__.py",…

VIEW QUESTION

Json – How do I add a space between the Double Quotes and Colon in the key values of the dictionary?

The following is my code: import json def value_list(sentence): word_list = sentence.split(" ") total_number_of_words_in_the_sentence = len(word_list) value_list = [] for i in range(0, total_number_of_words_in_the_sentence): count1 = word_list.count(word_list[i]) value_list.append(count1) return value_list def wordlist1(sentence): import json word_list = sentence.split() total_number_of_words_in_the_sentence = len(word_list)…

VIEW QUESTION
Back To Top
Search