Answers for "python functions cheat sheet"

6

python cheat sheet

print('Hello World') # print
string_name = "This is a string" # string
string_name[5:] # slicing returns "is a string"
integer_name = 4 # integer
float_name = 3.0 # float
list_name = ['a','b','cats','dogs', 1, 2.0] # list
list_name.append(3) # add to list
# list comprehension filters for int types from the previous list
list_comp = [x for x in list_name if type(x) is int]
# dictionary
dic = {"Bob":9766692343,"Alice":6123336678}
dic["Alice"] # returns 6123336678
dic_phone_numbers = dic.values() # returns list of values
dic_names = dic.keys() # returns list of keys
# class (cat object with 9 lives)
class Cat:
  def __init__(self,name):
    self.name = name
    self.lives = 9
    print(f"{name} is a cat!")
# recursive function (factorial example)
def factorial(x):
    if x == 1:
        return 1
    else:
        return (x * factorial(x-1))
Posted by: Guest on October-02-2020
-1

cheat sheet python

>>> int(7.7)
7
Posted by: Guest on March-02-2021
0

cheat sheet python

>>> 2 + 3 * 6
20
Posted by: Guest on March-02-2021
0

cheat sheet python

>>> spam = 'Hello'
>>> spam
'Hello'
Posted by: Guest on March-02-2021
-1

cheat sheet python

>>> (5 - 1) * ((7 + 1) / (3 - 1))
16.0
Posted by: Guest on March-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language