python 初心者
f = open("data.txt",mode="w") while(True): s = input("message:") if (s == ""): break; f.write(s+"...
3 search resultsShowing 1~3 results
f = open("data.txt",mode="w") while(True): s = input("message:") if (s == ""): break; f.write(s+"...
初心者です。 numpyをインストールしようとしたのですができません。 pip install numpy ↑実行すると以下の文字がでてきます。 DEPRECATION: Python 2.7 ...
class Person: name = "no name" mail = "no address" age = 0 def say (self): print("name" + self.na...
3 search resultsShowing 1~3 results
Qiita is a knowledge sharing service for engineers.