See It In Action

9jaCoder code (.9ja) converts directly to Python logic during execution. Click the tabs below to compare the syntax.

# Standard Python Code
print("Python Code (English)")
print("------------")
name = input("What is your name?: ")
age = int(input(f"How old are you {name}?: "))
print(f"{name} is {age} years old. {name} will be {age+10} in ten years.")
print("------------")
> Output:
Python Code (English)
------------
What is your name?: Ayo
How old are you Ayo?: 40
Ayo is 40 years old. Ayo will be 50 in ten years.
------------