Skip to content

How do I remove ‘None’ items from the end of a list in Python

A have a list that might contain items that are None. I would like to remove these items, but only if they appear at the end of the list, so: I have written a function, but I’m not sure this is the right way to go about it in python?: Also a list comprehension as an alternative, but this seems

Combine f-string and raw string literal

I’m wondering how to use an f-string whilst using r to get a raw string literal. I currently have it as below but would like the option of allowing any name to replace Alex I was thinking adding an f-string and then replacing Alex with curly braces and putting username inside but this doesn’t work…

Lost files while tried to move files using python shutil.move

I had 120 files in my source folder which I need to move to a new directory (destination). The destination is made in the function I wrote, based on the string in the filename. For example, here is the function I used. In the function, I am creating the destination folders, based on the ID’s derived fro…

Confusion about scoping in python classes

I am currently reviewing the python tutorials of python.org. I come from C++ and in the Classes tutorial (https://docs.python.org/3/tutorial/classes.html) I see that the scoping is similar to that in C++. It says the following about scoping and nesting: “At any time during execution, there are at least …