Middle
Do you have an understanding of programming languages? Do you write scripts?
sobes.tech AI
Answer from AI
Yes, I have an understanding of programming languages. I am familiar with languages such as Python, JavaScript, and SQL, which allows me to analyze technical requirements effectively and interact with developers. I also write scripts to automate routine tasks, such as data processing or API testing.
Example of a simple Python script for parsing a CSV file:
import csv
with open('data.csv', newline='') as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
print(row['Name'], row['Age'])