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.

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter1: An Introduction To Visual Studio 2017 And Visual Basic
Section: Chapter Questions
Problem 3E
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
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
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT