Test Blog

Test Blog

YesNoWHAT?
101
000
  • Check 1
  • Check 2

Testing Blog Writing

  1. 1
  2. two
  3. three
Note
NOTE

dendritesaxonsomabiological neuronΣ+ bfyartificial neuron
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.")
Logo
Brand Logo

Blog Ends