In [1]:
input()


I have no idea what to do here...
Out[1]:
'I have no idea what to do here...'

In [2]:
input("Enter your NFL team: ")


Enter your NFL team: cowboys
Out[2]:
'cowboys'

In [3]:
# saving it to a variable
team = input("Enter your NFL team: ")


Enter your NFL team: cowboys

In [5]:
print(team)


cowboys

In [6]:
print("how 'bout 'dem ", team)


how 'bout 'dem  cowboys

In [ ]: