nerdexam
GIAC

GPYC · Question #9

Which of the following would produce this list? [65, 66, 67, 68]

The correct answer is D. range(4) + 65. You've hit your limit · resets 1pm (America/New_York)

Python Fundamentals & Command Line Tools

Question

Which of the following would produce this list? [65, 66, 67, 68]

Options

  • Arange(1,4) + 64
  • Bfor x(4)+64
  • Cmap(ord, "ABCD")
  • Drange(4) + 65

How the community answered

(67 responses)
  • A
    3% (2)
  • B
    12% (8)
  • C
    9% (6)
  • D
    76% (51)

Explanation

You've hit your limit · resets 1pm (America/New_York)

Topics

#map function#ord#ASCII values#built-in functions

Community Discussion

No community discussion yet for this question.

Full GPYC Practice