im is is to python and ive이 코드를 가지고 있고 입력 할 때 "exit"라는 단어를 언제든지 입력 할 수있게하고 싶습니다. 일단 완료되면 스크립트가 닫힙니다.루프에서 빠져 나오십시오 python 3
도움이 될 것입니다.
import sys
while True:
def inputs():
first=input("Enter your first name: ")
last=input("Enter your last name: ")
gender=input("Enter your gender: ")
form=input("Enter your form: ")
file = open("signup.txt", "a")
#Records the user's details in the file
file.write("\nFirst name: "+first+", Last name: "+last+", Gender: "+gender+", Form: "+form)
#Closes the file
file.close()
if input(inputs) == "exit":
sys.exit()
inputs()
여기에는 루프가 없습니다. –