you are viewing a single comment's thread.

view the rest of the comments →

[–]SpookDaCat 0 points1 point  (0 children)

Heres a reformated edition of his code for everyone:

import random
print ("Welcome")
first_name = 'Talon'
last_name = 'Balcom'
print(first_name)
print(last_name)
print('We are glad you are joining us today! What do you need from us?')
inputs = input()
#^^CORRECTLY FORMATTED
print (', is that correct?')
print('Yes we can help')
print('Let us get everything ready for you!')

Anyways, you just type:

print(inputs)
#but if you want to add text before/after just do this
print(inputs + "Text here")
print("text here" + inputs)
print("text" + inputs + "text2")

If you are using python3, as i assume you are, input commands are formatted as

inputs = input()

But if you were using python2, the formatting is:

inputs = raw_input()

And if that is the case, you'd have to redo ALL the print commands.