answersLogoWhite

0

It's still there...

Type the following into a python prompt...

x = [7,4,3]

x.append(5)

print(x)

and you get the result...

[7,4,3,5]

It's definitely working in python 3

User Avatar

Wiki User

15y ago

What else can I help you with?