ines/course-starter-python

Pre Exercise code

AIITech opened this issue · 0 comments

Hello Ines,

I really apreciate your efforts to make this project simple and useful for all code lecturer around the world ( big thanks to you )

I have a question could you help me please. My question is how to hide pre exercise code. For example if the exercise consist 2 parts and I want to hide the first part

#Part 1 ( Hide )
import pandas as pd
url = "https://github.com/data.csv"

#Part 2 ( Show )
data = pd.read_csv(url)
data.head()

How to hide part 1 ( I dont want the student see this part ) and show only part 2?

Thanks in advance.