📜  python procedured - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:35.255000             🧑  作者: Mango

代码示例1
def printname(): #procedure 
    name = input('What is your name? ')
    number = int(input('How many times do you want your name to be printed? '))
    for x in range(number):
        print(name) # This program will only run if the procedure would be called out in the main program.

print('Welcome to the name printing progam!')
print('------------------------------------')

printname() #Calling out the procedure
input()