Open danieltomasz opened 3 weeks ago
Version (please complete the following information):
Code in medium post has wrong formatting and intendation isn't saved; (in locked and unlocked post) For example here https://medium.com/@LearnPythonProgramming/exploratory-data-analysis-eda-with-python-a-hands-on-guide-ef5e20484ba8 following code
import pandas as pd # Load the dataset data = pd.read_csv('movies.csv') # Display the first few rows print(data.head())
is added as
import pandas as pddata = pd.read_csv('movies.csv')print(data.head())
into markdown file
The same issue on Habr.com. Look code at the middle of the post
Same problem
Confirm the problem on habr.com
Version (please complete the following information):
Code in medium post has wrong formatting and intendation isn't saved; (in locked and unlocked post) For example here https://medium.com/@LearnPythonProgramming/exploratory-data-analysis-eda-with-python-a-hands-on-guide-ef5e20484ba8 following code
is added as
into markdown file