+ 1
How do you create an ai program in python? And where or what website can I go to for help apart from here?
4 Respuestas
+ 1
Half your question is vague or confusing.
For your A.I. question:
while True:
user_i = input("Type something: ")
if user_i in ["Hi", "hi", 'HI]:
print("Hello")
else:
print("I did not understand your text")
This is one of the most basic A.I. examples. It takes input from the user, decides what to do with it, and then formulates a response, in this case, through the console.
Your other question "what website can I go to for help apart from Python?" is confusing. Are you asking where can you go for Python resources? Or ... ?
0
i men't where else can I go to get more info and examples
0
thank you