# Getting-start-with-Python-p1 **Repository Path**: wd6/Getting-start-with-Python-p1 ## Basic Information - **Project Name**: Getting-start-with-Python-p1 - **Description**: Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number. Enter 7, 2, bob, 10, and 4 and match the output below - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Getting-start-with-Python-p1 - Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number. Enter 7, 2, bob, 10, and 4 and match the output below - 这个小程序是Coursera 上的课程 getting start with python的一个小项目。用来实现不断输入数字或者字母,若输入字母,则显示Incaild input,否则则继续输入,直到输入字符串 'done'。然后程序会输出最大值和最小值。