我正在尝试在输入行中包含一个字符串
我试图在单独的打印行中放置一个字符,但无法在输入空格中出现“脚”一词
def enter():
print('What is your height in feet?')
answer1 = int(input('>'))
solution = answer1 * 12
print('That comes out to {} inches.' .format(solution))
print(enter())
预期结果应为:>英尺 在控制台中供用户放置输入的空间。