Why Mr.Carlos Ghosn was kicked out of Nissan I saw this news interestingly. Renault open to Nissan pursuing merger talks with Honda, Bloomberg News reports https://www.reuters.com/business/autos-transportation/renault-open-nissan-pursuing-merger-talks-with-honda-bloomberg-news-reports-2024-12-18/ Mr.Carlos Ghosn might oppose to the merger with Honda and Nissan. Japan Ministry of Economy, Trade and Industry(METI) wanted to eliminate him. So he was arrested by Japan police. This is the reason why Mr.Carlos Ghosn was kicked out of Nissan. This is Japan, and this is the Japan.
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