give me python code for add 2 number
Certainly! Here's a simple Python code snippet that adds two numbers:
```python
# Function to add two numbers
def add_two_numbers(num1, num2):
return num1 + num2
# Take input from the user
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
# Calculate the sum
result = add_two_numbers(num1, num2)
# Display the result
print(f"The sum of {num1} and {num2} is: {result}")
```
You can run this code in a Python environment. It prompts the user to enter two numbers, adds them, and then displays the result.


