PyZombis aayush/issue#240@03ed810
Social
Runestone in social media:
Follow @iRunestone
Our Facebook Page
Help support us:
Search
Table of Contents
Book Index
User
Assignments
Practice
Change Course
Instructor's Page
Progress Page
Edit Profile
Change Password
Register
Login
Dark Mode
Scratch Activecode
Help
FAQ
Instructors Guide
About Runestone
Report A Problem
6.
Only when it is less than 4.74
ΒΆ
from urllib.request import urlopen LOYALTY_PRICES_URL = "https://api.allorigins.win/raw?url=http://beans.itcarlow.ie/prices-loyalty.html" page = urlopen(LOYALTY_PRICES_URL) content = page.read() position = content.find(">$") start = position + 2 end = start + 4 if content[start:end] < 4.74: print(content[start:end])
You have attempted
of
activities on this page