This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
niklasjohnson/python/atms-310/homework/homework1.py
2026-03-18 22:48:20 -07:00

22 lines
438 B
Python

a = 3.0 <= 3.1
b = 22 + 11.0
c = 11 + int(13)
d = 4 != 4
e = (3 <= 5) or (5<=4)
f = (3 <= 5) and (5 <= 4)
print(a)
print(b)
print(c)
print(d)
print(e)
print(f)
c = {'building number': '7725',
'street name': '188th Ave NE',
'city': 'Redmond',
'state': 'Washington',
'zip code' : 98052}
print('redmond costco is located at:')
print(c['building number'], c['street name'], c['city'],',', c['state'],',', c['zip code'])