Task 10 Write a Python program that takes a String as input from the user, removes the characters at even index and prints the resulting String in uppercase. ===== ========== Sample Input 1: String...




Must show it in Python:



Please show step by step with comments.



Please show it in simplest form.



Please don't use any functions




Please don't use any def func ()


Task 10<br>Write a Python program that takes a String as input from the user, removes the characters at even index and prints the resulting String in uppercase.<br>=====<br>==========<br>Sample Input 1:<br>String<br>Sample Output 1:<br>TIG<br>Explanation: The characters 'S', 'r' and 'n' are at index positions 0, 2, and 4 respectively. Hence they are removed and the remaining characters 'tig' are<br>capitalized giving us output 'TIG'.<br>========<br>========<br>Sample Input 2:<br>abcd<br>Sample Output 2:<br>BD<br>===== =====<br>===============<br>

Extracted text: Task 10 Write a Python program that takes a String as input from the user, removes the characters at even index and prints the resulting String in uppercase. ===== ========== Sample Input 1: String Sample Output 1: TIG Explanation: The characters 'S', 'r' and 'n' are at index positions 0, 2, and 4 respectively. Hence they are removed and the remaining characters 'tig' are capitalized giving us output 'TIG'. ======== ======== Sample Input 2: abcd Sample Output 2: BD ===== ===== ===============

Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions ยป

Submit New Assignment

Copy and Paste Your Assignment Here