Write code to assign the number of characters in the string rv to a variable num_chars. 1 rv = """Once upon a midnight dreary, while I pondered, weak and weary, 2 Over many a quaint and curious volume of forgotten lore, 3 While I nodded, nearly napping, suddenly there came a tapping, 4 As of some one gently rapping, rapping at my chamber door. 5 'Tis some visitor, I muttered, tapping at my chamber door; 6 Only this and nothing more.""" 7
Answers
Answer:
num_chars = rv
num_chars = len(num_chars)
print(num_chars)
Explanation: