0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonで「もっと幸せになれと無限に表示するプログラム」を実装してみた

Posted at

概要

Pythonで「もっと幸せになれと無限に表示するプログラム」を実装してみました。
Python3だと数字に上限がないようなので、ずっとカウントアップできます。

実装

以下のファイルを作成してみました。

motto_shiawase_ni_nare.py
i=0
while True:
    print(str(i)+":もっと幸せになれ")
    i = i + 1

以下のコマンドを実行しました。途中経過を表示します。
一日くらい実行してみましたが、うちのPCだと38億回くらい実行できました。

$ python3 motto_shiawase_ni_nare.py
0:もっと幸せになれ
...
3895432525:もっと幸せになれ
...

まとめ

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?