learningpython/spam.py

6 lines
88 B
Python
Raw Normal View History

2021-02-08 11:29:13 -06:00
#! /usr/bin/env python3
spam = 0
while spam <5:
print('spam'+str(spam))
spam = spam+1