PYTHON QUESTION
- Write a one-line Python generator or iterator expression that returns the sequence of integers generated by repeatedly adding the ascii values of each letter in the word “Close” to itself. The first 10 integers in this sequence are: 67, 175, 286, 401, 502, 569, 677, 788, 903, 1004. Assume any needed Python standard library modules are already imported.
itertools.accumulate((ord(i) for i in itertools.cycle('Close')))
2月20号分享的文件和图片,用来观察是否会被 notion 阻断、多久会阻断。

