Sublime Forum

Partial Execution with Input

#1

When input function is used as in the code below,

def you():
name1= input("Enter first name: ")
name2= input(“Enter last name”)
name=(name1, name2)
print(name)
return name
you()
The next code after the first input (name1 and the rest) never get executed. I’ve tried with another editor and the code worked properly.

How can this be fixed on sublime pls?
Thanks.

0 Likes

#2

Use Terminus as build system target.

All relevant details have been answered several times, already.

0 Likes

#3

Thanks! I’ve tried and I’m making some progress the out put is not perfect yet but I think the problem is with my configuration.

0 Likes