
- 6th Jul 2024
- 06:03 am
In this assignment our expert will use list,files, and other python functions other than dict to write the code. include simple-detailed comments
print ('all is well today') #change this to show a
proper titling of the task (mr
/ms/mrs/Dr) first and last name middlename
and have it print in the proper order
#Mr.Daffy Dynamite Duelil
name = input('What is your name Please : ')
height=input("enter you height in feet only :")#
change the height var to require feet and inches
weight=input("enter weight :")#correct this var
to take the proper dataype
hair_color=input("enter hair color :")
eye_color=input("enter eye color :")
age=input("enter age : ")#correct this to take
the proper dataype
gender=input("enter sex :")#correct this line of
code to be pol
ct=0
while ct<=2:#create a var that come from user
input to control the number of phone numbers
to be entered
#the while loop should only be used to take in
the phonenumbers
ct+=1
## The SSN Numbering
Scheme
##Number Has Three Parts
User Information and Phone Number Input Program - Get Assignment Solution
Please note that this is a sample solution created by our Statistics Experts for the Expense Tracker Program assignment. These solutions are for research and reference only.
- Visit our Statistics Assignment Sample Solution page to download the complete solution, including code, report, and screenshots.
- Connect with our Tutors for online tutoring to help you understand and complete this assignment.
- Check out the partial solution for this assignment in the blog post below.
Free Assignment Solution - User Information and Phone Number Input Program
'''
Created By:
Name :
Id :
'''
print("Mr. Daffy Dynamite Duelil")
name = input('What is your name Please : ')#Read name from the user
height = input("Enter your height in feet and inches: ")#Read weight from the user
weight=float(input("enter weight :"))#Read weight from the user
hair_color=input("enter hair color :")#Read Hair color from the user
eye_color=input("enter eye color :")#Read eye_Color from the user
age=int(input("enter age : "))#Read age from the user
gender=input("enter gender :")#Read gender from the user
ct = 0#initiaze ct to 0
counter = int(input("Enter how many phone number you want to enter :"))#Read number of phone number user want to enter
number_list = []#define number list
while ct number = input("Enter Phone Number : ")#read number from user and append to the number list
number_list.append(number)
ct+=1
SSN = 0
while(SSN <99999999 and SSN >999999999):#Repeat until user does not enter valid SSn
SSN = int(input(' Please enter your social security number :' ))#Read SSn
phonenumbertype= input(' choose one of the following number types cell ,work , other : ')#Read phone number type
areacode= int(input(' Please enter your area code :'))#Read area code
phonenumberexchange= int(input(' Please enter first three numbers after area code :'))#Read phone number exchane
linenumber= int(input(' Please enter the last 4 digits / numbers: '))#read line number
print(' ')
#print all the details on the console
print ('User name is : ',name)
print ('Number type:',phonenumbertype,' :',areacode,'-',phonenumberexchange,'-',linenumber)
##print ('User Work phone ',' ', WorkNum )
print("Have you seen my friend they are",height,"feet tall and they weigh",weight,"pounds they have",hair_color,"hair and",eye_color,"eyes and is around",age, " years old",gender,".")
Get the best User Information and Phone Number Input Program assignment and tutoring services from our experts now!
About The Author - John Smith
John Smith is a proficient software developer with a keen interest in creating intuitive and efficient coding solutions. Specializing in Python, John has crafted numerous projects that demonstrate the practical application of fundamental programming concepts. His expertise in data handling, user input validation, and formatting ensures that his programs are both robust and user-friendly.