Skip to content

Tag: pycharm

Show names of positional arguments inlayed

I’ve recently been doing some programming in Rust using Clion. This provides a utility whereby when you pass positional arguments to a function it will show you which argument will pick up each value (as if you had passed them in as keyword arguments) see below: I’ve found this to be a very nice f…

how to run python script in cmd

I wrote a small project to render video in the console. I used PyCharm, and if I run the code in it everything works as it should, but how do I run the file so that the result is displayed on the console? Answer Judging from your usage of mode con, you must be on Windows. Assuming you have Python

DOCX to PDF converter program

I’m making a doc to pdf converter program, and i have occured an error as below: Im an begginer in programming and i dont know how to fix it, below i paste python code: There are two templates called index.html and docx.html in Templates directory, this is how it looks in Pycharm: Does anyone have an id…

File doesnt exist error before user inputs file name

I am working with streamlit in python to produce a tool that takes a user’s input of a csv filename, and then carries out cleaning/tabulating of the data within the file. I have encountered an issue where before the user has entered their filename, my streamlit site shows a “FileNotFoundError: [Er…