user79894
0
Q:

methods in python

list.append(x) # append x to end of list
list.extend(iterable) # append all elements of iterable to list
list.insert(i, x) # insert x at index i
list.remove(x) # remove first occurance of x from list
list.pop([i]) # pop element at index i (defaults to end of list)
list.clear() # delete all elements from the list
list.index(x[, start[, end]]) # return index of element x
list.count(x) # return number of occurances of x in list
list.reverse() # reverse elements of list in-place (no return)
list.sort(key=None, reverse=False) # sort list in-place
list.copy() # return a shallow copy of the list
43
#Objects can also contain methods. Methods in objects are functions that belong to the object.
#Let us create a method in the Person class:

class Person:
  
  def __init__(self, name, age):
    self.name = name
    self.age = age

  def myfunc(self): # This is a method
    print("Hello my name is " + self.name)

p1 = Person("John", 36)
p1.myfunc()
1

  def my_function():
  print("Hello from a function") 
0

New to Communities?

Join the community