Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
+これを文字に割り当てながら、インポートランダム関数を使用してランダムな、-、*、または/記号を生成する最も簡単な方法は何ですか?
+
-
*
/
例えば
g = answeryougive('+','-')
前もって感謝します :)
あなたが欲しいrandom.choice
random.choice
random.choice(['+', '-'])
またはもっと簡潔に:
random.choice('+-')