Python doesn't recognize file path?
I think because the "/bin" has a slightly different color, it doesn't recognize the file path, or rather, nothing is recognized there. I need help, please.
I think because the "/bin" has a slightly different color, it doesn't recognize the file path, or rather, nothing is recognized there. I need help, please.
Hello, I'm playing a game (Everquest) that automatically creates a log file for me. Unfortunately, I keep forgetting to shorten the log file. After half a year, I remember, and it's easily 6 GB in size. The log files themselves are stored in a folder called Log. I'm looking for a way to automatically search…
What happens if you want to use DbSet.Add to save an object that has the same content as an object that is already in the database, but is not the same object?
Hello, I wanted to import libraries into Python, but I keep getting this error. What can I do? (PyCharm) Thank you in advance!
Hello, I moved my .com domain from SiteGround to Ionos about a week ago. The move was successful yesterday, and I linked it directly to my Ionos site. However, when I access the site now, the SiteGround message still appears. Likewise, when I log in to SiteGround, the domain is still registered as if it…
I wanted to measure the temperature with the Arduino, but it only reads 307.5 degrees or nan.8. I've already checked the wiring and the code.
Hi guys, I wanted to ask if someone can tell me how to press a key on the PC in C++ and then an image is displayed. I need this for a 3D space simulator.
I don’t know how to use Python, but probably you have to double the backslashes in string constants.
“C:\Program Files\\wkxxx\bin\\wkxxx.exe”
At least at C and C++ this is the case.
You could also try “C:/Program Files/wkxxx/bin/wkxxx.exe”. Maybe it works.
The slightly different color is an indication of what the problem is. The backslash is a so-called escape character at Python (and most other programming languages too). That means the sign that comes after it gets a special meaning. The most common is probably what creates a new line or \\ what creates a single backslash. The combination \b is a backspace. This means “delete the last sign”, so the “f” of “pdf” has also disappeared.
If you really want to have the backslashes in Python 1:1 in the string, it is easiest if you write a r before the opening quotation mark. This then means “raw string” and nothing is changed.
I didn’t know the trick with the r before the string.
You’ve also written, you don’t know about Python 😜
The r is in python about the same as the @ in C# or String.raw in Javascript or simply quote in PowerShell