Wireless Army
This is a blog / tips and tricks website for web developers and security researchers.
follow us in feedly


return results to user
by admin
 at 2017-12-24 13:01:00.

in this example we will return results based on users input to them
age = raw_input("How old are you? ")
height = raw_input("How tall are you? ")
weight = raw_input("How much do you weigh? ")

# we use 3 %r and the specify the order in parenthesis
print "So, you're %r old, %r tall and %r heavy." % (
    age, height, weight)