[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/techpavan/basic-programs/master/python/basic-input.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