`str` is missing `join`, `upper` and `lower` attributes
dankox opened this issue · 2 comments
dankox commented
Builtin string type doesn't support join, upper and lower functions/attributes.
# fails with missing attribute
",".join(list)
"hello world".upper()
"HELLo".lower()-
str.join -
str.upper -
str.lower