Assignment 1 Python Programs
Assignment 1 Python Programs
```python
# Program to check if the number is even or odd
if num % 2 == 0:
print(f"{num} is Even")
else:
print(f"{num} is Odd")
```
------------------------------------------------------------
```python
# Program to generate Fibonacci series up to 100
a, b = 0, 1
print("Fibonacci series up to 100:")
```python
# Make sure to install pandas and matplotlib before running:
# pip install pandas matplotlib
import pandas as pd
import matplotlib.pyplot as plt