learningpython/your_name.py

7 lines
134 B
Python
Raw Permalink Normal View History

2021-02-08 11:29:13 -06:00
#! /usr/bin/env python3
name =''
while name != 'your name':
print('please type your name')
name = input()
print('thank you!')