Learn practical skills, build real-world projects, and advance your career
import pandas as pd
r'C:\Users\SUMITH\Python Notebooks\Python Notebooks\upGrad Python Crash Course New\NumPy and Pandas\telco_churn.csv'
'C:\\Users\\SUMITH\\Python Notebooks\\Python Notebooks\\upGrad Python Crash Course New\\NumPy and Pandas\\telco_churn.csv'
print(r"sumit\nshukla")
# \n new line character
sumit\nshukla
df = pd.read_csv(r'C:\Users\SUMITH\Python Notebooks\Python Notebooks\upGrad Python Crash Course New\NumPy and Pandas\telco_churn.csv')
# If the data is in the same folder where I have my jupyter notebook. I just need to provide the name of the file
df = pd.read_csv("telco_churn.csv")