Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, October 28, 2013

#Python #Codecademy File Input/Output Writing


# Sample solution


my_list = [i**2 for i in range(1,11)]

my_file = open("output.txt", "r+")

# Add your code below!

for i in my_list:
  my_file.write(str(i)+"\n")
my_file.close()

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts