how do you make a program that can respond
how do you make a program that can respond
PattanAhmed
@PearsonBruner Hi,
The answer to your question is easy!
Just create an Input Statement
Code in Python:-
your_name = input('What is your name?') # The sentence ^ is the question in which the user should give an answer... print('Hello, Nice to meet you' + your_name)
Hope this helps
Please mark my answer if this helps
CoolJames1610
use print()
to make the program respond :)
octopyBot
what language? I know python;
name = input("what's your name?") print("hey,", name)
if you found this helpful, mark it as the correct answer!
Coder100
Hi! Something like:
name = input("What is your name? ") print("Your name is", name)
that?
Be more specific and tell us what you are having trouble with.
PearsonBruner
in python
thx