firstly, I'm really sorry for my bad English.
Im trying to use .str.split(), but it doesn't show. Nevertheless, when I complete that code, it works well. Im using Pycharm 2024.1 and anaconda 3. I don't think this problem is hardware related. (Im using Mac OS Somoma 14.1. with m3 pro.)
Doesn't Pycharm support code completion with .str?
I turned off ai supported tool which is included in Pycharm. But, nothing happened. (I thought that there's a collision with AI supported tool, but doses't work.) Also I reinstall Pycharm but it also doesn't work. Also modifying Code Completion doesn't work.
If you are trying to split a string then its just .split()
- you don't use .str.split()
.
astr = "this should be split by spaces"
x = astr.split()
print(x)