Answer to Question #65212 in Python for Stephen
Write a String constant consisting of exactly 5 exclamation marks
1
2017-02-13T09:25:24-0500
from collections import namedtuple
Constants=namedtuple('Constants',['exclamation_marks'])
const=Constants(5*'!')
print const.exclamation_marks
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Python
Comments
Leave a comment