0% found this document useful (0 votes)
32 views1 page

Main - Py - QUIZ#1 Lance Joseph Co - Replit

Uploaded by

z4pnujr4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views1 page

Main - Py - QUIZ#1 Lance Joseph Co - Replit

Uploaded by

z4pnujr4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

QUIZ#1 Lance Joseph Co Stop Invite Deploy Z4

Search main.py Console Shell

main.py EcommerceApp main_menu ... Format Packager 11s on 11:05:17, 03/19


Files
1 ⌄ class User:
main.py 2⌄ def __init__(self, username, password,
email):
Packager files
3 self.username = username Run 37s on 11:05:29, 03/19
.local 4 self.password = password
poetry.lock 5 self.email = email
pyproject.toml 6
7 ⌄ class Book:
8⌄ def __init__(self, title, author, price):
9 self.title = title
10 self.author = author
11 self.price = price
12
13 ⌄ class EcommerceApp:
14 ⌄ def __init__(self): Packager 3s on 11:06:07, 03/19
15 self.users = {}
Tools 16 self.books = []
Recent 17
18 ⌄ def signup(self, username, password, email):
Run 5s on 11:06:10, 03/19
19 ⌄ if username in self.users:
All 20 print("Username already exists.
AI Please choose another one.")
21 return
Deployments
22 user = User(username, password, email)
Authentication
23 self.users[username] = user
Chat 24 print("Sign up successful!")
Code Search ⇧F 25
Console 26 ⌄ def login(self, username, password):
Python Ln 60, Col 13 Spaces: 2 History

Join Replit Core

You might also like