Which of the following shell expressions in Python 3.x will give an error? a. >>>import unicodedata >>>unicodedata.category(“A”)

Questions & AnswersCategory: PythonWhich of the following shell expressions in Python 3.x will give an error? a. >>>import unicodedata >>>unicodedata.category(“A”)
Geek Boy Staff asked 2 years ago

Which of the following shell expressions in Python 3.x will give an error?
a.

>>>import unicodedata
>>>unicodedata.category("A")

b.

>>>import unicodedata
>>>unicodedata.decimal(9)

c.

>>>import unicodedata
>>>unicodedata.category("\u0660")

d.

>>>import unicodedata
>>>unicodedata.name("/")