Day 7: 100 Days of python

#DAY 7 100DAYS OF PYTHON
print("BEGINNER IN TECH?")
tech_field = input("What is a preffered I.T course ? ")
if tech_field == "Data Science":
  print("Interesting, we have something in common ")
  Level = input("Are you are beginner or an expert ? ")
  if Level == "beginner":
    print("You're welcome to the Tech space as a Data Scientist Aspirant!!!")
  else:
    print("Welcome Dude!!, but this isn'tmy interest")
elif tech_field == "Data analytics":
  print("Awesome, pretty close to my area of Interest")
else:
  print("Yeah, that's cool and all…")