Answers for "what is append use"

48

append python

List = ["One", "value"]

List.append("to add") # "to add" can also be an int, a foat or whatever"

#List is now ["One", "value","to add"]

#Or

List2 = ["One", "value"]
# "to add" can be any type but IT MUST be in a list
List2 += ["to add"] # can be seen as List2 = List2 + ["to add"]

#List2 is now ["One", "value", "to add"]
Posted by: Guest on February-11-2020
7

append python

it=[]
for i in range(10):
  it.append(i)
Posted by: Guest on March-21-2020
-1

what is append use

it=[]
for i in range(11):
  it.append(i)
  print(i)
Posted by: Guest on July-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language