Latest web development tutorials

Python obejmuje ćwiczenia 88

Python 100 Li Python 100 Li

Tytuł: 7 odczytuje numer (1-50) wartości całkowite, każdy odczytać wartość, program wypisuje się z szeregu wartości *.

Program Analysis: Brak.

Kod źródłowy:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    n = 1
    while n <= 7:
        a = int(raw_input('input a number:\n'))
        while a < 1 or a > 50:
            a = int(raw_input('input a number:\n'))
        print a * '*'
        n += 1

Powyższy przykład wyjście jest:

input a number:
9
*********
input a number:
5
*****
input a number:
6
******
input a number:

Python 100 Li Python 100 Li