Class 6 – Monday, September 7

Fearlessly we march on — variables and strings

A sign for knowing — what the future asks of us — demands we act now

I say love is love — For aren't we all just people — Living as we ;re


Look both ways


Agenda


Examples


Inquiring minds want to know


Program who_what_and_where.py

Enter word: dabchicks

Enter integer: 1112

Enter decimal: 3.14

w: dabchicks

si: 1112

sd: 3.14

w is <class 'str'> and is at 140270905125744 and when printed displays dabchicks

si is <class 'str'> and is at 140270778326512 and when printed displays 1112

sd is <class 'str'> and is at 140270778326192 and when printed displays 3.14

i: 1112

d: 3.14

i is <class 'int'> and is at 140270779823408 and when printed displays 1112

d is <class 'float'> and is at 140270905399376 and when printed displays 3.14

Enter word: hydroxyzine

Enter integer: 2020

Enter decimal: 9.7

w: hydroxyzine

si: 2020

sd: 9.7

w is <class 'str'> and is at 140690645154672 and when printed displays hydroxyzine

si is <class 'str'> and is at 140690518355696 and when printed displays 2020

sd is <class 'str'> and is at 140690518355376 and when printed displays 9.7

i: 2020

d: 9.7

i is <class 'int'> and is at 140690519852336 and when printed displays 2020

d is <class 'float'> and is at 140690645432400 and when printed displays 9.7

Enter word: 1112

Enter integer: 1112

Enter decimal: 1112

w: 1112

si: 1112

sd: 1112

w is <class 'str'> and is at 139627077196656 and when printed displays 1112

si is <class 'str'> and is at 139626950397552 and when printed displays 1112

sd is <class 'str'> and is at 139626950397680 and when printed displays 1112

i: 1112

d: 1112.0

i is <class 'int'> and is at 139626951894320 and when printed displays 1112

d is <class 'float'> and is at 139627077474384 and when printed displays 1112.0

d is <class 'float'> and is at 140565240115512 and when printed displays 1112.0



Program the_old_switcheroo.py

reply = input( 'Enter two words: ' )

w1, w2 = reply.split()

print( )

print( 'w1 =', w1 )

print( 'w2 =', w2 )

print()

# swap the values of w1 and w2

w1 = w2

w2 = w1

# print results

print( 'After swapping' )

print()

print( 'w1 =', w1 )

print( 'w2 =', w2 )

Enter two words: wahoo wah

w1 = wahoo

w2 = wah

After swapping

w1 = wah

w2 = wah



Program escaping.py

Program output

### print strings

a = 'petrichor'

b = 'a b'

c = 'a\tb'

d = 'aren\'t'

a: 'petrichor'

b: 'a b'

c: 'a b'

d: 'aren't'

len( a ): 9

len( b ): 4

len( c ): 3

len( d ): 6



Program i_need_water.py

water = 'H' + 2 + '0'

print( water )

water = 'H' + str( 2 ) + 'O'

print( water )



Program whats_the_point.py

Enter number: 3.1415926

number: 3.1415926

round( number, 6 ): 3.141593

round( number, 5 ): 3.14159

round( number, 4 ): 3.1416

round( number, 3 ): 3.142

round( number, 2 ): 3.14

round( number, 1 ): 3.1

round( number, 0 ): 3.0

round( number ): 3



Program all_consuming.py — due Wednesday September 9

What is something you consume daily? paper napkins

How much consumed on a normal weekday: 6

How much consumed on a normal weekend day: 0

You consume 1560 paper napkins per year.

What is something you consume daily? pretzels

How much consumed on a normal weekday: 0

How much consumed on a normal weekend day: 1

You consume 104 pretzels per year.

What is something you consume daily? jelly beans

How much consumed on a normal weekday: 4

How much consumed on a normal weekend day: 12

You consume 2288 jelly beans per year.



To do list



image from wikimedia.org, magical mystery tour album cover

All you need is love — All you need is love — All you need is love, love — Love is all you need.     The Beatles

 


  © 2020 Jim Cohoon   Resources from previous semesters are available.