learningpython/your_name.py

7 lines
134 B
Python
Executable file

#! /usr/bin/env python3
name =''
while name != 'your name':
print('please type your name')
name = input()
print('thank you!')