Zusammenfassung der Ressource
Frage 1
Frage
Which of the following is not a Python built-in function:
Antworten
-
diff()
-
isinstance()
-
map()
-
repr()
-
round()
Frage 2
Frage
Which of the following are valid ways to specify the string literal foo'bar in Python:
Antworten
-
"foo'bar"
-
"""foo'bar"""
-
'foo\'bar'
-
'foo'bar'
-
'foo''bar'