| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/ProjectRipo/basic-programs/master/python/basicInput.py | [Back] [Original] |
def reply(userTxt):
if type(userTxt) == type('str'):
return "The User said : "+userTxt
else:
return None
userTxt = raw_input('Please Say Something: ')
machineReply = reply(userTxt)
print(machineReply)
| Web Proxy Viewer | New URL | Original Page |