1) Write a Python program that asks the user for their name and age, stores the information
in variables, and then prints the op.
name = input("Please enter your name: ")
age = input("Please enter your age: ")
print("Hello, my name is " + name + " and I am " + age + " years old.")
2)Write a program that takes two numbers as input from the user and calculates their sum,
difference, product, and quotient.
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
sum = num1 + num2
difference= num1 - num2
product = num1 * num2
quotient = num1 / num2
print("Sum:", sum)
print("Difference:", difference)
print("Product:", product)
print("Quotient:", quotient)
3) practice the programs with different type of operatiors in python
4) operations in string
a) creating a string
b)concatenation
C) repetition
d)indexing and accessing characters
e) Slicing