次の機能を使用して、ユーザーによる入力を求めるにはどうすればよいですか?
user = input("please enter number")
この関数で使用できますか?
def Func(x):
total = 0
for i in range(x):
total += i * (i-1)
return total
したがって、関数に追加すると、次のようになります。
def Func(x):
user = input("please enter number: ")
x=user
total = 0
for i in range(x):
total += i * (i-1)
return total