which of the following is not a Python legal string operation? (1)
(a)‟abc‟+‟abc‟ (b) „abc‟*3 (c)‟abc‟ + 3 (d)‟abc‟.lower()
Answers
Answered by
1
Explanation:
(a)= "abc+"abc"
please mark me as brainleist
Answered by
1
"abc" + 3 is not a legal string operation in python.
String and integer cannot be concatenated in python.
Similar questions