I wrote Python code which shows Correlation between NASDAQ price, Corn and Gold(Corr=0.945). Corn and Gold are best mix I have found. https://gist.github.com/Kouhei-Takagi/a1a9b073f6cd6dacb7eb1ea871d8fd3c I changed some important parts. https://gist.github.com/Kouhei-Takagi/5becaf7c3a24d63ac9c56856e81297f2
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!
Comments
Post a Comment