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

image

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: image Output: image

Take two numbers from user and perform arithmetic operations on them.

Source Code: image Output: image

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

image