# Widename.py Copyright (c) Kari Laitinen # http://www.naturalprogramming.com # 2006-05-26 File created. # 2022-12-16 Converted to Python 3. # Individual characters of a string can be accessed by # writing an index between brackets. The individual characters # are one-character strings in Python. character_index = 0 print( "\n Please, type in your name: ", end="" ) name_from_keyboard = input() print( "\n Here is your name in a wider form: \n\n ", end="" ) while character_index < len( name_from_keyboard ) : print( name_from_keyboard[ character_index ], end=" " ) character_index += 1 print( "\n" )