# test attributes of builtin range typetry:range(0).startexceptAttributeError:print("SKIP")raiseSystemExit# attrsprint(range(1,2,3).start)print(range(1,2,3).stop)print(range(1,2,3).step)# bad attr (can't store)try:range(4).start=0exceptAttributeError:print('AttributeError')