Python Basics Part 2 Flashcards
show lowest value in string
A=min(“helloword”)
A
‘d’
how do you sort a list?
a.sort()
insert an element in a list
a.insert(0,-3)# index,element
add an element to a list
a.append(30)
remove a specific element
a.remove(34)# remove value 34
remove a specific position, or last
a.pop(3)#removes value from index 3
program
data_list=[]
num = int(input(“Please enter an integer (0 to quit): “))
while num != 0:
data_list.append(num)
num = int(input(“Please enter an integer (0 to quit): “))
data_list.sort() # or sorted(data_list)
print “The values, sorted into ascendng order, are:”
for num in data_list:
print num
create a dictionary
dict1={‘apple’:’Yes’,’Banana’:’No’,’Pizza’:’2’}
dict1
print value from specific key dictionary
print(dict1[‘apple’])
change a value of a dictionary
dict1[‘apple’]=’No’
add a dictionary to another dictionary
new=[‘grapes’:’no’]
dict1.update(new)
remove everything from dict
dict1.clear()
iterate the values in a dictionary and print them
for key in dict1,keys(): print(key) another: for key in food.keys(): print (key)
another view of keys in dict
> > > a_dict = {‘color’: ‘blue’, ‘fruit’: ‘apple’, ‘pet’: ‘dog’}
keys = a_dict.keys()
keys
another method to iterate thru keys in dict
# Iterate the keys: Method 2 for key in food: print (key)
how to iterate over both key and value pairs in dictionary
for x in food:
print(x,food[x])
iterate over the values in a dictionary
# Iterate the values: Method 1 for b in food.values(): print (b)
another way to iterate over values
for b in food:
print (food[b])
open file
fhandle=open(‘mbox.txt’,’r’)
print(fhandle)
write code to enter your name and print
name = input(“Please enter your name: “) # raw_input converts anything it gets into a string
print(‘Hello,’, name,”!”)
have user enter data for hight and width, convert to float and find square footage.
width=float(input(‘Please enter the width of the room in feet: ‘)) #float function converts input into a floating point number.
length=float(input(‘Please enter the length of the room in feet: ‘))
print(“The area of this room is “+str(widthlength)+’ square feet’
“The area of this room is”, widthlength, ‘square feet’)
print sum of 2 values
a=int(input(‘please enter number’))
b=int(input(‘please enter another number’))
print (a,”+”,b, “is”, a+b)
you have to put int( in front or it will treat as string
and you’ll get 1010 instead of 20. for 10 and 10
print a message if variable larger then 6
x=7 if(x>6): print('big') print('still big') print('done')
print if else comparing a value x=10
x=11 if x < 5: print('less then 5') elif x<10: print('less then 10') else: print('greater then 10')