Questions tagged [python-3.6]

The latest iteration of Python was unveiled in December 2016. Please direct any concerns related to Python 3.6 toward the appropriate [python] and [python-3.x] tags when applicable.

python script that prints values from json data

This is the data obtained from my JSON request { "name": "North America", "region_tag": "na1", "hostname": "prod.na1.lol.riotgames.com", "services": [ { "status": "online", "incidents": [ { "active": true, ...

Using Sqlalchemy to apply a filter on an object

I am currently working on a script that will test various conditions of objects within a SQLAlachemy ORM driven database. The dynamic nature of this process has presented some challenges for me. My goal is to query the minimum number of objects for all te ...

Scraping Data from a Table Using Selenium and Python 3.6 on Windows 10

Attempting to scrape data from a website and write it to a CSV file has been quite challenging. After successfully writing to the file, there seems to be an issue with only extracting data from the first row of the webpage. It's clear that something i ...

Determine the duration of the repeating decimal fraction's cycle

I am working on a Python program (version 3.6.5) that calculates the length of a repeating decimal like 1/7. The output should display something like: "Length: 6, Repeated Numbers: 142857". Here is what I have so far: n = int(input("Enter numerator: ")) ...

Cannot locate module in PyCharm on Windows

After successfully installing Pytorch through Anaconda, I encountered an issue where PyCharm was unable to find the module. ModuleNotFoundError: No module named 'torch' In addition, I have CUDA installed, but when attempting to add the package with PyC ...

Issue with SciPy installation on Windows: Unsupported wheel format for f.whl on this system

After installing Python 3.6 on my Windows 64-bit machine (which already had Python 2.7), I attempted to pip3 install seaborn, only to realize that scipy was a required dependency that I thought I had installed but apparently did not. I then downloaded the ...