Middle+
Do you know Python?
sobes.tech AI
Answer from AI
Yes, I am familiar with Python. It is a high-level programming language with dynamic typing and automatic memory management. Python is often used for scripting, web development, data analysis, and machine learning.
Example of simple Python code:
# Function to calculate factorial
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
print(factorial(5)) # Outputs 120