Most voted "pycharm" questions
Use when the question involves using the Pycharm IDE.
Learn more…73 questions
Sort by count of
-
-1
votes1
answer3266
viewsWhy doesn’t Pycharm recognize the modules and classes created by the user?
Hello, I’m new to python and have recently started working with the Pycharm IDE Community version. About the IDE, I liked it a lot, one of the best IDE’s I’ve ever used. However one problem I…
-
-1
votes1
answer151
viewsUncompromising a CSV file import using Pycharm
Good night, I want to import an excel file, and then I can manipulate it, but when I import the spreadsheet into Pycharm the file is all disfigured. Can someone help me? The following text is…
-
-1
votes3
answers194
views"break" does not finish execution as it should
Create a program where the user can enter several numerical values and register them in a list. If the number already exists inside, it will not be added. At the end, all unique values typed will be…
-
-1
votes1
answer336
viewsPython: Import command gets gray in Pycharm
I need help. I’m Newbie and I’m starting to study Python with the Guanabara videos on Youtube, to then invest in an Ead platform. I installed Python 3 and Pycharm and the "import" command was…
-
-1
votes1
answer94
viewsPython with float variable problems
Galera wrote a program where I decrease a variable in 0.01 and from the third decrease, python simply recognizes the value 0.01 as 0.009999999999988617 and ends up giving problems in my code. In the…
-
-1
votes2
answers66
viewsProblems with import and from/import command
I have a problem with my show. When I type "from Math import sqrt (or anything else", the Math library is not recognized by pycharm. Follows the code: from math import sqrt n = int(input('Digite um…
-
-1
votes1
answer92
viewsWhat’s wrong with this Python code?
So I’m learning Python from the video course and I’m in class 9, Ex23, and I’m trying (in a mathematical way) to show the numbers divided to the person, only he’s wrong, and I have no idea what to…
-
-1
votes1
answer116
viewsI made a pdf reader in python with a counter to read the page of this pdf but I’m missing something and my "reader" only reads the last page:
# o contador começa em -1 pq o para ler a primeira página tenho que começar do indice 0 contador = -1 def acessarPDF( c = contador): import PyPDF2 arq =…
-
-1
votes1
answer69
viewsFile execution error in pycharm
Good morning, everyone, I’m experiencing a boring situation that I’m having trouble solving. When running the game I’m developing the following image appears: Everything was fine before, the program…
-
-1
votes3
answers740
viewsProblem with python library - Selenium
Hi, I’m looking to learn a little more about WEB interactions with some languages. The language I’m focusing on is Python (I already have some knowledge). I am using the Selenium library - webdriver…
-
-1
votes1
answer29
viewspycharm does not recognize mp3 file
Here glr, I was doing the python course in the video course and challenge 21 was to be able to play some mp3 in the pycharm, but when I tried to import an mp3 file it appeared here. someone knows…
-
-1
votes0
answers23
viewsI cannot run any program in pycharm. Message "No pyvenv.cfg file"
When manipulating with modules and packages, I believe I deleted a module that appeared "venv". Although another module of these appeared. I have over 100 programs, in Python, in my Pycharm…
-
-1
votes0
answers37
viewsModulenotfounderror: No module named 'files'
I was using Pycharm in the elaboration of my project and everything was going well. I migrated to Vscode and this problem appeared, and there were no changes to the code. There is something specific…
-
-2
votes1
answer164
viewsCondition error of Pycharm
I am having condition error in Pycharm. It was working normally minutes ago. I already closed the program, but it did not solve. valorProduto = float(input('Qual é o valor do produto de compra? R$…
-
-2
votes3
answers174
viewsDeactivate Pycharm autocomplete
Good afternoon, everyone! I came into the programming world recently and was told that starting programming without these autocomplete stands is better now in the beginning. What do you think? That…
-
-2
votes1
answer155
viewsPyqt5 and buttons that lock
I made a basic Pyqt5 application with login and registration. The problem is that when I click on any button to perform any action be it, save next or login, Python stops working. I’ve searched…
-
-2
votes1
answer77
viewsHelp - How to remove blue Pycharm markup when typing
You guys, good night! Please, I would like some help for a beginner in programming. How do I remove this blue tag in the Pycharm editor, as shown in the photo, so it goes back to normal? Since…
-
-2
votes2
answers58
viewsI cannot execute if and Elif commands
I’m taking an IT course and I’m taking my first lessons with Python, I’m using Pycharm but the code I’m doing does not perform the function "if" no matter what I say in response. print("menu") reg=…
-
-2
votes1
answer49
viewsHow to get rid of a vertical line in the Pycharm editor
to incindo agr in Python and to using pycharm, and soon after opening the editor and has a vertical line, HOW I’ll get rid of that?
-
-3
votes1
answer149
viewsPycharm complaining about the local variable
Next, I have a code made in Python 3.7.2 very simple and basic (I’m still learning and wanted to train a little doing a gym training routine). The program works normally, but Pycharm is complaining…
-
-3
votes1
answer116
viewsPython 3 Startup Issues after Deletion of Extra Files in Project Folder
I deleted some files from the project folder I was using and when I tried to open Python again, this message appeared: Internal error. Please report to http://jb.gg/ide/critical-startup-errors…
-
-3
votes1
answer57
viewsError while using pandas in pycharm to read excel file
I am trying to use pandas in pycharm to read an excel file but it returns me many errors as appears in the image, I have tried to change the file path,use r before the way, at last nothing is right…
-
-3
votes1
answer59
viewsHow to call function within another function in Python?
Hey, you guys. I’m new to Python and need to deliver a script of requests Apis. There are three attributes required to request the API (client_id, client_secret and text), and the two "clients" are…