- 2
Write python program that ask the user to enter his/her name and display every other two letters of the inputted name downward.
Write python program that ask the user to enter his/her name and display every other two letters of the inputted name downward. Sample Output: Enter your name: Jose_Rizal Output: Jo se _R iz al
1 Respuesta
+ 2
If a string is just a list of characters how can you use indexing to print certain items from a list?