Python is a high-level, interpreted, and object-oriented programming language known for its simple syntax and readability. It is widely used in web development, data science, artificial Intelligence, automation, and software development.
Output:
Hello, World!
name = "John"
age = 21
height = 5.8
print(name)
print(age)
print(height)


