Python Programming only plz Need Help ( I also have a checkEmail written just like the checkPhone just couldnt upload the picture) Create a program to perform the following actions:   Create a module that will determine if a string is an email address in this pattern XXXX@XXXX.XXX. you cannot use the regex library. Create a module that determines if a string is a phone number in this pattern XXX-XXX-XXXX. you cannot use the regex library. Then prompt the user: Enter an email address, check to see if the e-mail address is in the correct format. If not ask the user to enter an e-mail address in the correct format. If correct print e-mail accepted. Enter a phone number, check to see if the phone number is in the correct format. If not ask the user to enter a phone number in the correct format. If correct print phone accepted. Print the following: The phone number entered The email address entered   Describe the numbers and text you print. Do not just print numbers or strings to the screen explain what each number represents.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Python Programming only plz Need Help

( I also have a checkEmail written just like the checkPhone just couldnt upload the picture)

Create a program to perform the following actions:

 

  • Create a module that will determine if a string is an email address in this pattern XXXX@XXXX.XXX. you cannot use the regex library.
  • Create a module that determines if a string is a phone number in this pattern XXX-XXX-XXXX. you cannot use the regex library.

Then prompt the user:

  • Enter an email address, check to see if the e-mail address is in the correct format. If not ask the user to enter an e-mail address in the correct format. If correct print e-mail accepted.
  • Enter a phone number, check to see if the phone number is in the correct format. If not ask the user to enter a phone number in the correct format. If correct print phone accepted.

Print the following:

  • The phone number entered
  • The email address entered

 

Describe the numbers and text you print. Do not just print numbers or strings to the screen explain what each number represents.

CSCI-145
Bookmarks
Structure
File Edit View Navigate Code Refactor Run Tools VCS Window Help
main.py
Project
ICSCI-145 C:\Users\bubbl\Pycharm Projects\CSCI-1 1
|CSCI-145
2
3
4
5
H
>
Review1.py
Review2.py
venv library root
checkEmail.py
checkPhone.py
main.py
H scratch_4.py.html
> IIII External Libraries
Run:
▶ 个
Week4Assignment1.py
Week5Assignment.py
Scratches and Consoles
Scratches
checkEmail.py
checkPassword.py
checkPhone.py
library.py
main X
6
7
8
9
C:\Users\bubbl\Pycharm
Enter an email address: dj@gmail.com
60°
main.py
scratch_7.py X
import checkPhone
import checkEmail
Process finished with exit code 1
H
while True:
10
11 A
12
13
14
15
1.6
F
The email address entered: dj@gmail.com
Traceback (most recent call last):
A
break
CSCI-145-main.py
else:
email=input("Enter an email address: ")
checkEmail.isEmail (email)
print("The email address entered:", email)
if checkEmail(email) == True:
print("Email accepted\n")
scratch_4.py
C:\...\checkPhone.py X
Projects\CSCI-145\venv\Scripts\python.exe C:\Users\bubbl\Pycharm Projects\CSCI-145\main.py
File "C:\Users\bubbl\PycharmProjects\CSCI-145\main.py", line 9, in <module>
if checkEmail (email) == True:
TypeError: 'module' object is not callable
I
print("The e-mail address is not in the correct format.\n")
checkPhone.py X
C:\...\checkEmail.py x
checkEmail.py x
main
Q
A2 A3
✶
X
A V
5:54 PM
10/3/2022
:
Notifications
Transcribed Image Text:CSCI-145 Bookmarks Structure File Edit View Navigate Code Refactor Run Tools VCS Window Help main.py Project ICSCI-145 C:\Users\bubbl\Pycharm Projects\CSCI-1 1 |CSCI-145 2 3 4 5 H > Review1.py Review2.py venv library root checkEmail.py checkPhone.py main.py H scratch_4.py.html > IIII External Libraries Run: ▶ 个 Week4Assignment1.py Week5Assignment.py Scratches and Consoles Scratches checkEmail.py checkPassword.py checkPhone.py library.py main X 6 7 8 9 C:\Users\bubbl\Pycharm Enter an email address: dj@gmail.com 60° main.py scratch_7.py X import checkPhone import checkEmail Process finished with exit code 1 H while True: 10 11 A 12 13 14 15 1.6 F The email address entered: dj@gmail.com Traceback (most recent call last): A break CSCI-145-main.py else: email=input("Enter an email address: ") checkEmail.isEmail (email) print("The email address entered:", email) if checkEmail(email) == True: print("Email accepted\n") scratch_4.py C:\...\checkPhone.py X Projects\CSCI-145\venv\Scripts\python.exe C:\Users\bubbl\Pycharm Projects\CSCI-145\main.py File "C:\Users\bubbl\PycharmProjects\CSCI-145\main.py", line 9, in <module> if checkEmail (email) == True: TypeError: 'module' object is not callable I print("The e-mail address is not in the correct format.\n") checkPhone.py X C:\...\checkEmail.py x checkEmail.py x main Q A2 A3 ✶ X A V 5:54 PM 10/3/2022 : Notifications
File Edit View Navigate Code Refactor Run Tools VCS Window Help CSCI-145-checkPhone.py
CSCI-145 checkPhone.py
Bookmarks
Structure
Project
ICSCI-145 C:\Users\bubbl\Pycharm Projects\CSCI-145
|CSCI-145
>
H
Review1.py
Review2.py
venv library root
checkEmail.py
checkPhone.py
main.py
H scratch_4.py.html
> IIII External Libraries
Run:
▶ 个
Week4Assignment1.py
Week5Assignment.py
Scratches and Consoles
Scratches
checkEmail.py
checkPassword.py
checkPhone.py
library.py
main X
2
3
C:\Users\bubbl\Pycharm
Enter an email address: dj@gmail.com
main.py X scratch_7.py X scratch_4.py
def isPhone (numberToCheck):
A
return False
The email address entered: dj@gmail.com
Traceback (most recent call last):
60°
Process finished with exit code 1
Projects\CSCI-145\venv\Scripts\python.exe C:\Users\bubbl\Pycharm Projects\CSCI-145\main.py
File "C:\Users\bubbl\PycharmProjects\CSCI-145\main.py", line 9, in <module>
if checkEmail (email) == True:
TypeError: 'module' object is not callable
H
C:\...\checkPhone.py X
I
checkPhone.py
C:\...\checkEmail.py X
checkEmail.py x
main
▶
Q
A 3
X
5:55 PM
10/3/2022
:
A V
Notifications
Transcribed Image Text:File Edit View Navigate Code Refactor Run Tools VCS Window Help CSCI-145-checkPhone.py CSCI-145 checkPhone.py Bookmarks Structure Project ICSCI-145 C:\Users\bubbl\Pycharm Projects\CSCI-145 |CSCI-145 > H Review1.py Review2.py venv library root checkEmail.py checkPhone.py main.py H scratch_4.py.html > IIII External Libraries Run: ▶ 个 Week4Assignment1.py Week5Assignment.py Scratches and Consoles Scratches checkEmail.py checkPassword.py checkPhone.py library.py main X 2 3 C:\Users\bubbl\Pycharm Enter an email address: dj@gmail.com main.py X scratch_7.py X scratch_4.py def isPhone (numberToCheck): A return False The email address entered: dj@gmail.com Traceback (most recent call last): 60° Process finished with exit code 1 Projects\CSCI-145\venv\Scripts\python.exe C:\Users\bubbl\Pycharm Projects\CSCI-145\main.py File "C:\Users\bubbl\PycharmProjects\CSCI-145\main.py", line 9, in <module> if checkEmail (email) == True: TypeError: 'module' object is not callable H C:\...\checkPhone.py X I checkPhone.py C:\...\checkEmail.py X checkEmail.py x main ▶ Q A 3 X 5:55 PM 10/3/2022 : A V Notifications
Expert Solution
Step 1

To check if the email and the phone number entered by the user is correct or not.

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Study of Characters
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education