ICP 1 - Murarishetti-Shiva-Kumar/Python-Deep-Learning-Programming GitHub Wiki
Python Lesson1: Basics of Python
State differences between Python 2 and Python 3 version

Input the string “Python” as a list of characters from console, delete at least 2 characters, reverse the resultant string and print it.
Source Code:
Output:

Take two numbers from user and perform arithmetic operations on them.
Source Code:
Output:

Write a program that accepts a sentence and replace each occurrence of ‘python’ with ‘pythons’ without using regex.
