Question: In python please. Social Network Topics String Methods, for-loop, 2-D list Problem Description You are intrigued by these social networking websites and want to know
In python please.



Social Network Topics String Methods, for-loop, 2-D list Problem Description You are intrigued by these social networking websites and want to know how they work. You started with figuring out your school's social network. You want to know who is friends with who and how many friends each person has. Write a program that shows a two dimensional array of friends where each element taking a value of either 1 or 0 representing whether the person at row i is friends with person at column j. Your program should also output the number of friends each person has. Programming Requirements 1. Ask the user to enter the total number of people in the network to create the 2-D list (There should be at least 1 person in the network). 2. Store their names in a separate list 3. We will decide whether ane person is friends with another if their names' lexicographic difference is not greater than 12 4. Populate the 2-D list with 1 representing row i and column / (jth element in each iist represented by the row number) being friends and 0 representing row i and column / not being friends 5. You should assume that you are not friends with yourself, which means that ListOffriends [ii]j] =0, where i=j 6. Output the 2-D list in a table format to the screen (use only tabs for spacing) 7. Also output the total number of friends each person has (calculate using the 2-D list). Note: A personal/assignment information block is required at the beginning of the source code. The following information should be included: your full name, assignment \#, file name(s), due date. Example: "' Assignment: SocialNet Name: Paul Davis File Created on March 10, 2024 Sample Outputs What is the total number of friends in the network: f fis an incorrect input! Please enter an integer. 3 Enter name: Jack Enter name: Jill Enter name: Bob Jack Jill Bob Jack 11 Jill 1 o 1 Bob 1 1 0 Total Friends Count: Jack 2 Jill 2 Bob 2 ---jGRASP: operation complete. ----jGRASP: operation complete. What is the total number of friends in the network: 2 Enter name: Cat Enter name: Zebra Cat Zebra Cat 0 Zebra 0 Total Friends Count: Cat 0 Zebra 0 Submission Requirements: 1. Source code: the python file named as SocialNetYourlastname.py. 2. Project report: Include pseudocode, at least 5 screenshots of test runs in one PDF file and name it SocialNetYourlastname.pdf
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
