Introduction to Python Scripting
Basics of Python Pandas
Soft skills - Decision Making
Write a Python script which receives a number as input parameter and loops from 1 till the given number and displays all the odd numbers and prime numbers in that range.
Example:-
Input: Range = 20
Output: Odd numbers = 1,3,5,7,11,13,15,17,19
Prime numbers = 2,3,5,7,11,13,17,19