简体   繁体   中英

How can i make my for loop continue from where it left off in the try and except block? Python 3

I want my program to catch an error if a number isn't entered by the user. If the user enters a letter or just presses 'enter', the program restarts the for loop from the beginning again. How can I make it start from the place it was entered wrong?

#This is the size of the array 
YEAR_SIZE = 12

months = []                     ###This is the array that will hold the rainfall for each month 
monthNames=['January','February','March','April','May',
'June','July','August','September',
'October','November','December']

def getMonthlyRainfall():
  while True:
    try:
      total = 0
      for month in range(YEAR_SIZE):         ###This loop iterates 12 times for 12 entries
         print ("Enter the rainfall for",monthNames[month], "in inches")
         months.append(float(input()))
         continue
    except:
      print ("Try again") 

You could use another variable to keep track of the answers given by the user:

#This is the size of the array 
YEAR_SIZE = 12

months = []                     ###This is the array that will hold the rainfall for each month 
monthNames=['January','February','March','April','May',
'June','July','August','September',
'October','November','December']


def getMonthlyRainfall():
    ANSWERS = 0

    while True:
        try:
            total = 0
            for month in range(ANSWERS, YEAR_SIZE):         ###This loop iterates 12 times for 12 entries
                print ("Enter the rainfall for",monthNames[month], "in inches")
                x = input()
                months.append(float(x))
                ANSWERS = ANSWERS + 1
        except:
          print ("Try again") 

getMonthlyRainfall()

In this case ANSWERS

Check online Demo

YEAR_SIZE = 12

months = []                     ###This is the array that will hold the rainfall for each month 
monthNames=['January','February','March','April','May',
'June','July','August','September',
'October','November','December']

def getMonthlyRainfall():
  while True:
    total = 0
    for month in range(YEAR_SIZE):         ###This loop iterates 12 times for 12 entries1
       try:

         tmp = get_input(month)
       except ValueError:
         print ("Enter the rainfall for",monthNames[month], "in inches")
         tmp = get_input()
       months.append(tmp)
       continue

def get_input(month):
  try:
    print ("Enter the rainfall for",monthNames[month], "in inches")
    tmp = float(input())
  except ValueError:
    get_input(month)

Here is a cleaner answer:

import calendar

def ask_for_rainfall(month_name):
    while True:
        try:
            return float(input("Enter the rainfall for %s in inches" % month_name))
        except:
            print('Try again')

def get_monthly_rain_fall():
    month_names = list(calendar.month_name[1:])
    return {m_name: ask_for_rainfall(m_name) for m_name in month_names}

# Now you can do
# rain_falls = get_monthly_rain_fall()
# print(rain_falls["January"])

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM