Skip to content

Discord.py how do I send a DM to anyone I want through a command

Someone asked me to make a bot for him that sends a DM to anyone he specifies through a command, like *send_dm @Jess#6461 hello. I’ve searched alot and I came across this code: but then I got the error: discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: ‘B…

Fast way to cyclically wrap values in pandas dataframe

In words: I have a data frame that consists of values over a day, for multiple days per Userid. I’d like to shift all of certain people’s data by 1 period, so that the first value in their first column is a nan, and then everything is cyclically offset, with the last value truncated or lost to spa…

Count input length without spaces, periods, or commas

How do you count the length of a string (example “Hello, Mr. John. Have a good day.” taking out the commas, periods and white spaces? The count should be 23. I’m coming up with 33 with the commas, periods and white spaces. Answer The @yixizhou answer is simple and accurately a good one but i…