I am trying to remove the extra space from the data which is entered as input. I tried using the .strip() condition but it doesn’t remove the extra space of the entered data. the code I wrote to remove extra space Answer These are 3 ways of dealing with spaces you can use according to your needs: 1- the…
Tag: python-3.x
Converting Bad Text to Korean
The Problem I’m working on cleaning up some old Korean code, and there are some sections of code that used to be Korean that I would like to translate to English. However, there seems to have been an encoding issue, and the text is no longer Korean. Instead, it’s a garbled mess. I would like to go…
Receive foreign UDP Broadcast with Python
I have a device in the network at 192.168.123.204 which broadcasts UDP datagrams(Artnet) as 2.168.123.204 to 2.255.255.255:6454. (The network address is 192.168.123.204 but the datagram is sent with 2.168.123.204 as source.) The address 2.255.255.255 can’t be changed (no setting for that). My Python scr…
FutureWarning: The default value of regex will change from True to False in a future version
I’m running below code to clean text Then it returns a warning Could you please elaborate on the reason of this warning? Answer See Pandas 1.2.0 release notes: The default value of regex for Series.str.replace() will change from True to False in a future release. In addition, single character regular ex…
Using MongoDB on Discord.py for scheduled tasks
Purpose I have some commands like temp-mute, temp-ban, and other commands that need to be done after commands execution, and I do need to schedule things like giveaways and trigger a function as soon as the subscription ends, from a command. What do I want? I want to store all my timings and things in MongoDB…
how to find multiple non-repeating numbers in python?
I have a below method that finds the non-repeating elements in a list: The code runs successfully and below is the output: But when I am trying to add more than one non-repeating elements in the list, the output doesn’t change. For example, if I add 11 at the end of the list the output still remains the…
len(list) does not provide any result, whereas print(list) does. Why?
my homework is building number of prime number counting code. This is where I come so far. Check I initially thought that using ‘len’ would provide the number of prime numbers. But when I change ‘print’ to ‘len’ Nothing happened. I would appreciate if you show me some insig…
Check if A role has perms – Discord.py
Here Is a Good question. I want to check all roles in a server for admin, then create a new channel and allow only those set roles to have access. I dont want to use @commands.has_guild_permissions(). Answer If by roles with admin you mean any role that has the Administrator permission on (not just the server…
How can I avoid for-loops using pandas?
Would love to know how to optimize this code without using for-loops, if it’s possible. What I’m trying to do is to categorize all the values in series df[‘Состояние’] looking at key words in lists list_rep and list_dem one by one. Thank you! Answer Use Series.str.lower fiirst, then Se…
How to collect wait()’d co-routines in a set?
I have been attempting to generate a ping scan that uses a limited number of processes. I tried as_completed without success and switched to asyncio.wait with asyncio.FIRST_COMPLETED. The following complete script works if the offending line is commented out. I’d like to collect the tasks to a set in or…