The Spider’s Thread Background I recalled one story “The Spider’s Thread” by Ryūnosuke Akutagawa. https://en.wikipedia.org/wiki/The_Spider's_Thread This story tells us about to save only his/herself is bad things. My idea This story can apply everything in our minds. Developed countries have/had tried to save only own countries. Developed countries provided fake help to developing countries for maintaining advanced position. In 21st century, the way is no use. Now, Global South appears.
2019/9/23. Fizz Buzz Problem by Python Source codes for i in range ( 1 , 21 ) : if i % 15 == 0: print ( "Fizz Buzz" ) continue if i % 3 == 0: print ( "Fizz" ) continue if i % 5 == 0: print ( "Buzz" ) continue print ( i ) This is the source code of “ Fizz Buzz Problem ” by Python. I am learning Python and I am starting to show my source codes on my blog!