learningpython/spam.py

6 lines
88 B
Python
Executable file

#! /usr/bin/env python3
spam = 0
while spam <5:
print('spam'+str(spam))
spam = spam+1