Skip to content

Instantly share code, notes, and snippets.

@SahbiOuali13
Last active September 9, 2020 17:20
Show Gist options
  • Save SahbiOuali13/dfe0c3206e03f753c2e45211b17a112c to your computer and use it in GitHub Desktop.
Save SahbiOuali13/dfe0c3206e03f753c2e45211b17a112c to your computer and use it in GitHub Desktop.
xfile = open('course.txt')
for line in xfile:
print(line)
# clean from spaces at end
xfile = open('course.txt')
for line in xfile:
line = line.rstrip()
print(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment