Last active
May 28, 2020 08:46
-
-
Save salexkidd/3906127 to your computer and use it in GitHub Desktop.
やったー!Pythonでも人工知能できたよー!\(^o^)/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding:utf-8 -*- | |
import random | |
def main(): | |
word_list = [u'マジで', u'ヤバい', u'ウケるー', ] | |
while True: | |
input(">>>") | |
print(random.choice(word_list)) | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ただし2.7だけの模様(print文的に)