Powered by Vibrantnotes
Key Features : You are free to do more by yourself !
Live Code Execution:
Python : Try it yourself above!
print("Hello, Python!")
Math Calculations:
Students can perform basic arithmetic calculations using Python operators.
Example : Try it yourself above!
x = 5 y = 3 sum_result = x + y print("Sum:", sum_result)
Variable and Printing:
Introduction to variables and how to display their values using print().
Example : Try it yourself above!
name = "Alice" age = 15 print("My name is", name, "and I am", age, "years old.")