Test Blog
Test Blog
| Yes | No | WHAT? |
|---|---|---|
| 1 | 0 | 1 |
| 0 | 0 | 0 |
- Check 1
- Check 2
Testing Blog Writing
- 1
- two
- three
Note
NOTE
The artificial neuron mirrors the biological one, part for part: dendrites → inputs, synapse strengths → weights, the cell body's summation → Σ + bias, and 'firing' → the activation function f."
# Greet the user
print("Welcome to Python!")
# Get input from the user
name = input("What is your name? ")
age = int(input("How old are you? "))
# Conditional logic based on input
if age >= 18:
print(f"Hello {name}, you are an adult.")
else:
years_left = 18 - age
print(f"Hello {name}, you will be an adult in {years_left} years.")

Brand Logo
Blog Ends