Page 1
Student ID: 158, P-Value: 3.75e-10
Nearest Neighbor ID: 115
Student (left) and Nearest Neighbor (right).
f | user_input_1 = input() | f | user_input_1 = input() |
| user_input_2 = input() | | user_input_2 = input() |
| user_input_3 = input() | | user_input_3 = input() |
| user_input_4 = input() | | user_input_4 = input() |
| user_input_5 = input() | | user_input_5 = input() |
| user_input_6 = input() | | user_input_6 = input() |
n | print("Firstname:",user_input_1) | n | print("First name:",user_input_1) |
| print("Last name:",user_input_2) | | print("Last name:",user_input_2) |
| print("Age:",user_input_3) | | print("Age:",user_input_3) |
| print("Major:",user_input_4) | | print("Major:",user_input_4) |
| print("School year:",user_input_5) | | print("School year:",user_input_5) |
| print("School name:",user_input_6)q = .25 * float(input()) | | print("School name:",user_input_6)q = .25 * float(input()) |
| d = .10 * float(input()) | | d = .10 * float(input()) |
| n = .05 * float(input()) | | n = .05 * float(input()) |
| p = .01 * float(input()) | | p = .01 * float(input()) |
| dollars = q + d + n + p | | dollars = q + d + n + p |
n | print(f'Amount: ${dollars:.2f}') | n | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
t | area_code = area_code_prefix // 1000 | t | area_code = area_code_prefix //1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 2
Student ID: 115, P-Value: 3.75e-10
Nearest Neighbor ID: 158
Student (left) and Nearest Neighbor (right).
f | user_input_1 = input() | f | user_input_1 = input() |
| user_input_2 = input() | | user_input_2 = input() |
| user_input_3 = input() | | user_input_3 = input() |
| user_input_4 = input() | | user_input_4 = input() |
| user_input_5 = input() | | user_input_5 = input() |
| user_input_6 = input() | | user_input_6 = input() |
n | print("First name:",user_input_1) | n | print("Firstname:",user_input_1) |
| print("Last name:",user_input_2) | | print("Last name:",user_input_2) |
| print("Age:",user_input_3) | | print("Age:",user_input_3) |
| print("Major:",user_input_4) | | print("Major:",user_input_4) |
| print("School year:",user_input_5) | | print("School year:",user_input_5) |
| print("School name:",user_input_6)q = .25 * float(input()) | | print("School name:",user_input_6)q = .25 * float(input()) |
| d = .10 * float(input()) | | d = .10 * float(input()) |
| n = .05 * float(input()) | | n = .05 * float(input()) |
| p = .01 * float(input()) | | p = .01 * float(input()) |
| dollars = q + d + n + p | | dollars = q + d + n + p |
n | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | n | print(f'Amount: ${dollars:.2f}') |
| | | phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
t | area_code = area_code_prefix //1000 | t | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 3
Student ID: 318, P-Value: 1.17e-09
Nearest Neighbor ID: 495
Student (left) and Nearest Neighbor (right).
f | user_input_1 = input() | f | user_input_1 = input() |
| user_input_2 = input() | | user_input_2 = input() |
| user_input_3 = input() | | user_input_3 = input() |
| user_input_4 = input() | | user_input_4 = input() |
| user_input_5 = input() | | user_input_5 = input() |
| user_input_6 = input() | | user_input_6 = input() |
| print('First name:',user_input_1) | | print('First name:',user_input_1) |
| print('Last name:',user_input_2) | | print('Last name:',user_input_2) |
| print('Age:',user_input_3) | | print('Age:',user_input_3) |
| print('Major:',user_input_4) | | print('Major:',user_input_4) |
| print('School year:',user_input_5) | | print('School year:',user_input_5) |
n | print('School name:',user_input_6) | n | print('School name:',user_input_6)quarters = int(input()) |
| quarters = int(input()) | | |
| dimes = int(input()) | | dimes = int(input()) |
| nickels = int(input()) | | nickels = int(input()) |
n | pennies = int(input()) | n | pennies = int (input()) |
| Cents = (pennies * 1) + (nickels * 5) + (dimes * 10) + (quarters * 25) | | Cents = (pennies * 1) + (nickels * 5) + (dimes * 10) + (quarters * 25) |
| dollars = Cents / 100 | | dollars = Cents / 100 |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | print('(',area_code,')',' ',prefix,'-',line_number,sep='') | t | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 4
Student ID: 495, P-Value: 1.17e-09
Nearest Neighbor ID: 318
Student (left) and Nearest Neighbor (right).
f | user_input_1 = input() | f | user_input_1 = input() |
| user_input_2 = input() | | user_input_2 = input() |
| user_input_3 = input() | | user_input_3 = input() |
| user_input_4 = input() | | user_input_4 = input() |
| user_input_5 = input() | | user_input_5 = input() |
| user_input_6 = input() | | user_input_6 = input() |
| print('First name:',user_input_1) | | print('First name:',user_input_1) |
| print('Last name:',user_input_2) | | print('Last name:',user_input_2) |
| print('Age:',user_input_3) | | print('Age:',user_input_3) |
| print('Major:',user_input_4) | | print('Major:',user_input_4) |
| print('School year:',user_input_5) | | print('School year:',user_input_5) |
n | print('School name:',user_input_6)quarters = int(input()) | n | print('School name:',user_input_6) |
| | | quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
| nickels = int(input()) | | nickels = int(input()) |
n | pennies = int (input()) | n | pennies = int(input()) |
| Cents = (pennies * 1) + (nickels * 5) + (dimes * 10) + (quarters * 25) | | Cents = (pennies * 1) + (nickels * 5) + (dimes * 10) + (quarters * 25) |
| dollars = Cents / 100 | | dollars = Cents / 100 |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | print('(',area_code,')',' ',prefix,'-',line_number, sep='') | t | print('(',area_code,')',' ',prefix,'-',line_number,sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 5
Student ID: 399, P-Value: 9.97e-08
Nearest Neighbor ID: 23
Student (left) and Nearest Neighbor (right).
f | user_first_name = input() | f | user_first_name = input() |
| user_last_name = input() | | user_last_name = input() |
| user_age = input() | | user_age = input() |
| user_major = input() | | user_major = input() |
| user_year = input() | | user_year = input() |
| user_school = input() | | user_school = input() |
| print("First name:", user_first_name) | | print("First name:", user_first_name) |
| print("Last name:", user_last_name) | | print("Last name:", user_last_name) |
| print("Age:", user_age) | | print("Age:", user_age) |
| print("Major:", user_major) | | print("Major:", user_major) |
| print("School year:", user_year) | | print("School year:", user_year) |
| print("School name:", user_school)quarters = int(input()) | | print("School name:", user_school)quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
t | nickles = int(input()) | t | nickels= int(input()) |
| pennies = int(input()) | | pennies= int(input()) |
| dollars = quarters * 0.25 + dimes * 0.10 + nickles * 0.05 + pennies * 0.01 | | dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 |
| print("Amount: ${:.2f}".format(dollars)) | | print("Amount: ${:.2f}".format(dollars))phone_number = int(input()) |
| phone_number = int(input()) | | |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 6
Student ID: 23, P-Value: 9.97e-08
Nearest Neighbor ID: 399
Student (left) and Nearest Neighbor (right).
f | user_first_name = input() | f | user_first_name = input() |
| user_last_name = input() | | user_last_name = input() |
| user_age = input() | | user_age = input() |
| user_major = input() | | user_major = input() |
| user_year = input() | | user_year = input() |
| user_school = input() | | user_school = input() |
| print("First name:", user_first_name) | | print("First name:", user_first_name) |
| print("Last name:", user_last_name) | | print("Last name:", user_last_name) |
| print("Age:", user_age) | | print("Age:", user_age) |
| print("Major:", user_major) | | print("Major:", user_major) |
| print("School year:", user_year) | | print("School year:", user_year) |
| print("School name:", user_school)quarters = int(input()) | | print("School name:", user_school)quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
t | nickels= int(input()) | t | nickles = int(input()) |
| pennies= int(input()) | | pennies = int(input()) |
| dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 | | dollars = quarters * 0.25 + dimes * 0.10 + nickles * 0.05 + pennies * 0.01 |
| print("Amount: ${:.2f}".format(dollars))phone_number = int(input()) | | print("Amount: ${:.2f}".format(dollars)) |
| | | phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 7
Student ID: 385, P-Value: 7.34e-07
Nearest Neighbor ID: 294
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print('First name: ',first_name) | | print('First name: ',first_name) |
| print('Last name: ',last_name) | | print('Last name: ',last_name) |
n | print("Age: ",age) | n | print('Age: ',age) |
| print('Major: ',major) | | print('Major: ',major) |
| print('School year: ',school_year) | | print('School year: ',school_year) |
n | print('School name: ',school_name)quarter = 0.25 | n | print('School name: ',school_name) |
| | | quarter = 0.25 |
| dime = 0.10 | | dime = 0.10 |
| nickel = 0.05 | | nickel = 0.05 |
| penny = 0.01 | | penny = 0.01 |
| num_quarters = quarter * int(input()) | | num_quarters = quarter * int(input()) |
| num_dimes = dime * int(input()) | | num_dimes = dime * int(input()) |
| num_nickels = nickel * int(input()) | | num_nickels = nickel * int(input()) |
n | num_pennies = penny * int(input()) | n | num_pennies = penny *int(input()) |
| dollars = num_quarters + num_dimes + num_nickels + num_pennies | | dollars = num_quarters + num_dimes + num_nickels + num_pennies |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}') |
n | phone_number = input() | n | phone_number = (input()) |
| print('(' + phone_number[0] + phone_number[1] + phone_number[2] + ') ' | | print('(' + phone_number[0] + phone_number[1] + phone_number[2] + ') ' |
t | + phone_number[3] + phone_number[4] + phone_number[5] | t | + phone_number[3] + phone_number[4] + phone_number[5] |
| + '-' + phone_number[6] + phone_number[7] + phone_number[8] + phone_number[9]) | | + '-' + phone_number[6] + phone_number[7] + phone_number[8] + phone_number[9]) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 8
Student ID: 294, P-Value: 7.34e-07
Nearest Neighbor ID: 385
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print('First name: ',first_name) | | print('First name: ',first_name) |
| print('Last name: ',last_name) | | print('Last name: ',last_name) |
n | print('Age: ',age) | n | print("Age: ",age) |
| print('Major: ',major) | | print('Major: ',major) |
| print('School year: ',school_year) | | print('School year: ',school_year) |
n | print('School name: ',school_name) | n | print('School name: ',school_name)quarter = 0.25 |
| quarter = 0.25 | | |
| dime = 0.10 | | dime = 0.10 |
| nickel = 0.05 | | nickel = 0.05 |
| penny = 0.01 | | penny = 0.01 |
| num_quarters = quarter * int(input()) | | num_quarters = quarter * int(input()) |
| num_dimes = dime * int(input()) | | num_dimes = dime * int(input()) |
| num_nickels = nickel * int(input()) | | num_nickels = nickel * int(input()) |
n | num_pennies = penny *int(input()) | n | num_pennies = penny * int(input()) |
| dollars = num_quarters + num_dimes + num_nickels + num_pennies | | dollars = num_quarters + num_dimes + num_nickels + num_pennies |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}') |
n | phone_number = (input()) | n | phone_number = input() |
| print('(' + phone_number[0] + phone_number[1] + phone_number[2] + ') ' | | print('(' + phone_number[0] + phone_number[1] + phone_number[2] + ') ' |
t | + phone_number[3] + phone_number[4] + phone_number[5] | t | + phone_number[3] + phone_number[4] + phone_number[5] |
| + '-' + phone_number[6] + phone_number[7] + phone_number[8] + phone_number[9]) | | + '-' + phone_number[6] + phone_number[7] + phone_number[8] + phone_number[9]) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 9
Student ID: 10, P-Value: 9.02e-07
Nearest Neighbor ID: 23
Student (left) and Nearest Neighbor (right).
f | user_first_name = input() | f | user_first_name = input() |
| user_last_name = input() | | user_last_name = input() |
| user_age = input() | | user_age = input() |
| user_major = input() | | user_major = input() |
n | | n | user_year = input() |
| user_school_year = input() | | user_school = input() |
| user_school_name = input() | | |
| print("First name:", user_first_name) | | print("First name:", user_first_name) |
| print("Last name:", user_last_name) | | print("Last name:", user_last_name) |
| print("Age:", user_age) | | print("Age:", user_age) |
| print("Major:", user_major) | | print("Major:", user_major) |
n | print("School year:", user_school_year) | n | print("School year:", user_year) |
| print("School name:", user_school_name) | | print("School name:", user_school)quarters = int(input()) |
| quarters = int(input()) | | |
| dimes = int(input()) | | dimes = int(input()) |
n | nickels = int(input()) | n | nickels= int(input()) |
| pennies = int(input()) | | pennies= int(input()) |
| dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 | | dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 |
n | print("Amount: ${:.2f}".format(dollars)) | n | print("Amount: ${:.2f}".format(dollars))phone_number = int(input()) |
| phone_number = int(input()) | | |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | print('(',area_code, ')',' ',prefix,'-',line_number, sep='') | t | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 10
Student ID: 414, P-Value: 5.15e-05
Nearest Neighbor ID: 279
Student (left) and Nearest Neighbor (right).
f | user1 = input() | f | user1 = input() |
| user2 = input() | | user2 = input() |
| user3 = input() | | user3 = input() |
| user4 = input() | | user4 = input() |
| user5 = input() | | user5 = input() |
| user6 = input() | | user6 = input() |
n | print("First name:" , user1) | n | print("First name:"),print(user1) |
| print("Last name:" , user2) | | print("Last name:"), print(user2) |
| print("Age:" , user3) | | print("Age:"), print(user3) |
| print("Major:" , user4) | | print("Major:"), print(user4) |
| print("School year:" , user5) | | print("School year:"), print(user5) |
| print("School name:" , user6)quart = float(input()) | | print("School name:"), print(user6)quart = float(input()) |
| dimes = float(input()) | | dimes = float(input()) |
| nickels = float(input()) | | nickels = float(input()) |
| pennies = float(input()) | | pennies = float(input()) |
| x = quart * 0.25 | | x = quart * 0.25 |
| y = dimes * 0.1 | | y = dimes * 0.1 |
| z = nickels * 0.05 | | z = nickels * 0.05 |
t | p = pennies * 0.01 | t | p = pennies * 0.01 |
| total_change = x + y + z + p | | total_change = x + y + z + p |
| print(f'Amount: ${total_change:.2f}') | | print(f'Amount: ${total_change:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | |
| print(f'({phone_number//10000000}) {phone_number//10000%1000}-{phone_number%1000 | | print(f'({phone_number//10000000}) {phone_number//10000%1000}-{phone_number%1000 |
| 0}') | | 0}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 11
Student ID: 279, P-Value: 5.15e-05
Nearest Neighbor ID: 414
Student (left) and Nearest Neighbor (right).
f | user1 = input() | f | user1 = input() |
| user2 = input() | | user2 = input() |
| user3 = input() | | user3 = input() |
| user4 = input() | | user4 = input() |
| user5 = input() | | user5 = input() |
| user6 = input() | | user6 = input() |
n | print("First name:"),print(user1) | n | print("First name:" , user1) |
| print("Last name:"), print(user2) | | print("Last name:" , user2) |
| print("Age:"), print(user3) | | print("Age:" , user3) |
| print("Major:"), print(user4) | | print("Major:" , user4) |
| print("School year:"), print(user5) | | print("School year:" , user5) |
| print("School name:"), print(user6)quart = float(input()) | | print("School name:" , user6)quart = float(input()) |
| dimes = float(input()) | | dimes = float(input()) |
| nickels = float(input()) | | nickels = float(input()) |
| pennies = float(input()) | | pennies = float(input()) |
| x = quart * 0.25 | | x = quart * 0.25 |
| y = dimes * 0.1 | | y = dimes * 0.1 |
| z = nickels * 0.05 | | z = nickels * 0.05 |
t | p = pennies * 0.01 | t | p = pennies * 0.01 |
| total_change = x + y + z + p | | total_change = x + y + z + p |
| print(f'Amount: ${total_change:.2f}')phone_number = int(input()) | | print(f'Amount: ${total_change:.2f}') |
| | | phone_number = int(input()) |
| print(f'({phone_number//10000000}) {phone_number//10000%1000}-{phone_number%1000 | | print(f'({phone_number//10000000}) {phone_number//10000%1000}-{phone_number%1000 |
| 0}') | | 0}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 12
Student ID: 169, P-Value: 8.39e-05
Nearest Neighbor ID: 460
Student (left) and Nearest Neighbor (right).
f | user_first_name = input() | f | user_first_name = input() |
| user_last_name = input() | | user_last_name = input() |
| user_age = int(input()) | | user_age = int(input()) |
| user_major = input() | | user_major = input() |
| user_school_year = input() | | user_school_year = input() |
| user_school_name = input() | | user_school_name = input() |
| print('First name:', user_first_name) | | print('First name:', user_first_name) |
| print('Last name:', user_last_name) | | print('Last name:', user_last_name) |
| print('Age:', user_age) | | print('Age:', user_age) |
| print('Major:', user_major) | | print('Major:', user_major) |
| print('School year:', user_school_year) | | print('School year:', user_school_year) |
n | print('School name:', user_school_name)num_quarters = float(input()) | n | print('School name:', user_school_name)num_qrts = float(input()) |
| num_dimes = float(input()) | | num_dimes = float(input()) |
n | num_nickels = float(input()) | n | num_nick = float(input()) |
| num_pennies = float(input()) | | num_penn = float(input()) |
| dollars = ((num_quarters/4) + (num_dimes/10) + (num_nickels/20) + (num_pennies/1 | | dollars = ((num_qrts/4) + (num_dimes/10) + (num_nick/20) + (num_penn/100)) |
| 00)) | | |
| print(F'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| area_code = phone_number // 10000000 | | area_code = phone_number // 10000000 |
n | digits1 = ((phone_number // 10000) % 1000) | n | line_number1 = ((phone_number // 10000) % 1000) |
| digits2 = (phone_number % 10000) | | line_number2 = (phone_number % 10000) |
| print('(', end = '') | | print('(', end = '') |
| print(area_code, end = '') | | print(area_code, end = '') |
n | print(')', digits1, end = '') | n | print(')', line_number1, end = '') |
| print('-', end = '') | | print('-', end = '') |
t | print(digits2) | t | print(line_number2) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 13
Student ID: 460, P-Value: 8.39e-05
Nearest Neighbor ID: 169
Student (left) and Nearest Neighbor (right).
f | user_first_name = input() | f | user_first_name = input() |
| user_last_name = input() | | user_last_name = input() |
| user_age = int(input()) | | user_age = int(input()) |
| user_major = input() | | user_major = input() |
| user_school_year = input() | | user_school_year = input() |
| user_school_name = input() | | user_school_name = input() |
| print('First name:', user_first_name) | | print('First name:', user_first_name) |
| print('Last name:', user_last_name) | | print('Last name:', user_last_name) |
| print('Age:', user_age) | | print('Age:', user_age) |
| print('Major:', user_major) | | print('Major:', user_major) |
| print('School year:', user_school_year) | | print('School year:', user_school_year) |
n | print('School name:', user_school_name)num_qrts = float(input()) | n | print('School name:', user_school_name)num_quarters = float(input()) |
| num_dimes = float(input()) | | num_dimes = float(input()) |
n | num_nick = float(input()) | n | num_nickels = float(input()) |
| num_penn = float(input()) | | num_pennies = float(input()) |
| dollars = ((num_qrts/4) + (num_dimes/10) + (num_nick/20) + (num_penn/100)) | | dollars = ((num_quarters/4) + (num_dimes/10) + (num_nickels/20) + (num_pennies/1 |
| | | 00)) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(F'Amount: ${dollars:.2f}')phone_number = int(input()) |
| area_code = phone_number // 10000000 | | area_code = phone_number // 10000000 |
n | line_number1 = ((phone_number // 10000) % 1000) | n | digits1 = ((phone_number // 10000) % 1000) |
| line_number2 = (phone_number % 10000) | | digits2 = (phone_number % 10000) |
| print('(', end = '') | | print('(', end = '') |
| print(area_code, end = '') | | print(area_code, end = '') |
n | print(')', line_number1, end = '') | n | print(')', digits1, end = '') |
| print('-', end = '') | | print('-', end = '') |
t | print(line_number2) | t | print(digits2) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 14
Student ID: 449, P-Value: 1.23e-02
Nearest Neighbor ID: 318
Student (left) and Nearest Neighbor (right).
f | user_input_1 = input() | f | user_input_1 = input() |
| user_input_2 = input() | | user_input_2 = input() |
| user_input_3 = input() | | user_input_3 = input() |
| user_input_4 = input() | | user_input_4 = input() |
| user_input_5 = input() | | user_input_5 = input() |
| user_input_6 = input() | | user_input_6 = input() |
| print('First name:',user_input_1) | | print('First name:',user_input_1) |
| print('Last name:',user_input_2) | | print('Last name:',user_input_2) |
| print('Age:',user_input_3) | | print('Age:',user_input_3) |
| print('Major:',user_input_4) | | print('Major:',user_input_4) |
| print('School year:',user_input_5) | | print('School year:',user_input_5) |
| print('School name:',user_input_6) | | print('School name:',user_input_6) |
| quarters = int(input()) | | quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
| nickels = int(input()) | | nickels = int(input()) |
| pennies = int(input()) | | pennies = int(input()) |
n | quarter_cost = quarters * 25 | n | Cents = (pennies * 1) + (nickels * 5) + (dimes * 10) + (quarters * 25) |
| dime_cost = dimes * 10 | | dollars = Cents / 100 |
| nickel_cost = nickels * 5 | | |
| penny_cost = pennies * 1 | | |
| dollars = (float(quarter_cost + dime_cost + nickel_cost + penny_cost)/ 100) | | |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | print('(',area_code,')', ' ',prefix,'-',line_number, sep="") | t | print('(',area_code,')',' ',prefix,'-',line_number,sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 15
Student ID: 384, P-Value: 1.57e-02
Nearest Neighbor ID: 23
Student (left) and Nearest Neighbor (right).
t | firstname = input() | t | user_first_name = input() |
| lastname = input() | | user_last_name = input() |
| age = input() | | user_age = input() |
| major = input() | | user_major = input() |
| | | user_year = input() |
| schoolyear = input() | | user_school = input() |
| schoolname = input() | | |
| print('First name:', firstname) | | print("First name:", user_first_name) |
| print('Last name:', lastname) | | print("Last name:", user_last_name) |
| print('Age:', age) | | print("Age:", user_age) |
| print('Major:', major) | | print("Major:", user_major) |
| print('School year:', schoolyear) | | print("School year:", user_year) |
| print ('School name:', schoolname) quarters = int(input()) | | print("School name:", user_school)quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
| nickels= int(input()) | | nickels= int(input()) |
| pennies= int(input()) | | pennies= int(input()) |
| dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 | | dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 |
| print("Amount: ${:.2f}".format(dollars))phone_number = int(input()) | | print("Amount: ${:.2f}".format(dollars))phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 16
Student ID: 7, P-Value: 1.61e-02
Nearest Neighbor ID: 318
Student (left) and Nearest Neighbor (right).
n | user_input_1= input() | n | user_input_1 = input() |
| user_input_2 = input() | | user_input_2 = input() |
n | user_input_3= input() | n | user_input_3 = input() |
| user_input_4= input() | | user_input_4 = input() |
| user_input_5= input() | | user_input_5 = input() |
| user_input_6= input() | | user_input_6 = input() |
| print("First name: " +user_input_1) | | print('First name:',user_input_1) |
| print("Last name: " +user_input_2) | | print('Last name:',user_input_2) |
| print("Age: " +user_input_3) | | print('Age:',user_input_3) |
| print("Major: " +user_input_4) | | print('Major:',user_input_4) |
| print("School year: " +user_input_5) | | print('School year:',user_input_5) |
| print("School name: " +user_input_6) | | print('School name:',user_input_6) |
| quarters = int(input()) | | quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
| nickels = int(input()) | | nickels = int(input()) |
| pennies = int(input()) | | pennies = int(input()) |
n | dollars = (quarters * 0.25) + (dimes * 0.10) + (nickels * 0.05) +( pennies * 0.0 | n | Cents = (pennies * 1) + (nickels * 5) + (dimes * 10) + (quarters * 25) |
| 1) | | |
| print(f'Amount: ${dollars:.2f}') | | dollars = Cents / 100 |
| phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | print('(',area_code,')',' ',prefix,'-',line_number, sep='') | t | print('(',area_code,')',' ',prefix,'-',line_number,sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 17
Student ID: 187, P-Value: 1.89e-02
Nearest Neighbor ID: 7
Student (left) and Nearest Neighbor (right).
n | user_input_1 = input() | n | user_input_1= input() |
| user_input_2 = input() | | user_input_2 = input() |
t | user_input_3 = input() | t | user_input_3= input() |
| user_input_4 = input() | | user_input_4= input() |
| user_input_5 = input() | | user_input_5= input() |
| user_input_6 = input() | | user_input_6= input() |
| print('First name:', user_input_1,) | | print("First name: " +user_input_1) |
| print('\nLast name:',user_input_2,) | | print("Last name: " +user_input_2) |
| print('\nAge:', user_input_3,) | | print("Age: " +user_input_3) |
| print('\nMajor:', user_input_4,) | | print("Major: " +user_input_4) |
| print('\nSchool year:', user_input_5,) | | print("School year: " +user_input_5) |
| print('\nSchool name:', user_input_6,)import math | | print("School name: " +user_input_6) |
| quarters = int(float(input())) | | quarters = int(input()) |
| dimes = int(float(input())) | | dimes = int(input()) |
| nickels = int(float(input())) | | nickels = int(input()) |
| pennies = int(float(input())) | | pennies = int(input()) |
| dollars = (quarters * 0.25) + (dimes * 0.10) + (nickels * 0.05) + (pennies * 0.0 | | dollars = (quarters * 0.25) + (dimes * 0.10) + (nickels * 0.05) +( pennies * 0.0 |
| 1) | | 1) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}') |
| | | phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 18
Student ID: 87, P-Value: 2.52e-02
Nearest Neighbor ID: 423
Student (left) and Nearest Neighbor (right).
n | user_name = input() | n | first_name = input() |
| last_name = input() | | last_name = input() |
n | age = input() | n | age = int(input()) |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
n | print("First name:" , user_name) | n | print("First name:",first_name) |
| print("Last name:" , last_name) | | print("Last name:",last_name) |
| print("Age:" , age) | | print("Age:",age) |
| print("Major:" , major) | | print("Major:",major) |
| print("School year:" , school_year) | | print("School year:",school_year) |
| print("School name:" , school_name) | | print("School name:",school_name)quarters = float(input()) |
| quarters = int(input()) | | |
| dimes = int(input()) | | dimes = float(input()) |
| nickels = int(input()) | | nickels = float(input()) |
| pennies = int(input()) | | pennies = float(input()) |
| dollars = ((quarters * 0.25) + (dimes * 0.1) + (nickels * 0.05) + (pennies * 0.0 | | dollars = (quarters * 0.25) + (dimes * 0.10) + (nickels * 0.05) + (pennies * 0.0 |
| 1)) | | 1) |
| print(f"Amount: ${dollars:.2f}") | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | |
| line_num = phone_number % 10000 | | line_number = phone_number % 10000 |
| phone_number //= 10000 | | phone_number //= 10000 |
| prefix = phone_number % 1000 | | prefix = phone_number % 1000 |
| area_code = phone_number // 1000 | | area_code = phone_number // 1000 |
t | phone_str = '(%s) %s-%s' % (area_code, prefix, line_num) | t | phone = '(%s) %s-%s' % (area_code, prefix, line_number) |
| print (phone_str) | | print(phone) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 19
Student ID: 423, P-Value: 2.52e-02
Nearest Neighbor ID: 87
Student (left) and Nearest Neighbor (right).
n | first_name = input() | n | user_name = input() |
| last_name = input() | | last_name = input() |
n | age = int(input()) | n | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
n | print("First name:",first_name) | n | print("First name:" , user_name) |
| print("Last name:",last_name) | | print("Last name:" , last_name) |
| print("Age:",age) | | print("Age:" , age) |
| print("Major:",major) | | print("Major:" , major) |
| print("School year:",school_year) | | print("School year:" , school_year) |
| print("School name:",school_name)quarters = float(input()) | | print("School name:" , school_name) |
| | | quarters = int(input()) |
| dimes = float(input()) | | dimes = int(input()) |
| nickels = float(input()) | | nickels = int(input()) |
| pennies = float(input()) | | pennies = int(input()) |
| dollars = (quarters * 0.25) + (dimes * 0.10) + (nickels * 0.05) + (pennies * 0.0 | | dollars = ((quarters * 0.25) + (dimes * 0.1) + (nickels * 0.05) + (pennies * 0.0 |
| 1) | | 1)) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f"Amount: ${dollars:.2f}") |
| | | phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_num = phone_number % 10000 |
| phone_number //= 10000 | | phone_number //= 10000 |
| prefix = phone_number % 1000 | | prefix = phone_number % 1000 |
| area_code = phone_number // 1000 | | area_code = phone_number // 1000 |
t | phone = '(%s) %s-%s' % (area_code, prefix, line_number) | t | phone_str = '(%s) %s-%s' % (area_code, prefix, line_num) |
| print(phone) | | print (phone_str) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 20
Student ID: 492, P-Value: 3.05e-02
Nearest Neighbor ID: 59
Student (left) and Nearest Neighbor (right).
n | first_name = input() | n | first_name=(input()) |
| last_name = input() | | last_name=(input()) |
| age = input() | | age=(input()) |
| major = input() | | major=(input()) |
| school_year = input() | | school_year=(input()) |
| school_name = input() | | school_name=(input()) |
| print('First name: ', first_name) | | print('First name:',first_name) |
| print('Last name: ', last_name) | | print('Last name:',last_name) |
| print('Age: ', age) | | print('Age:',age) |
| print('Major: ', major) | | print('Major:',major) |
| print('School year: ', school_year) | | print('School year:',school_year) |
| print('School name: ', school_name)quarters = int(input()) | | print('School name:',school_name)quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
| nickels = int(input()) | | nickels = int(input()) |
| pennies = int(input()) | | pennies = int(input()) |
n | dollars = (quarters*.25) + (dimes*.10) + (nickels*.05) + (pennies*.01) | n | dollars = (quarters*(.25)) + (dimes*(.10)) + (nickels*(.05)) + (pennies*(0.01)) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}') |
| | | phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
t | area_prefix = phone_number // 10000 | t | area_code_prefix = phone_number // 10000 |
| area_code = area_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_prefix % 1000 | | prefix = area_code_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number,sep='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 21
Student ID: 59, P-Value: 3.05e-02
Nearest Neighbor ID: 492
Student (left) and Nearest Neighbor (right).
n | first_name=(input()) | n | first_name = input() |
| last_name=(input()) | | last_name = input() |
| age=(input()) | | age = input() |
| major=(input()) | | major = input() |
| school_year=(input()) | | school_year = input() |
| school_name=(input()) | | school_name = input() |
| print('First name:',first_name) | | print('First name: ', first_name) |
| print('Last name:',last_name) | | print('Last name: ', last_name) |
| print('Age:',age) | | print('Age: ', age) |
| print('Major:',major) | | print('Major: ', major) |
| print('School year:',school_year) | | print('School year: ', school_year) |
| print('School name:',school_name)quarters = int(input()) | | print('School name: ', school_name)quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
| nickels = int(input()) | | nickels = int(input()) |
| pennies = int(input()) | | pennies = int(input()) |
n | dollars = (quarters*(.25)) + (dimes*(.10)) + (nickels*(.05)) + (pennies*(0.01)) | n | dollars = (quarters*.25) + (dimes*.10) + (nickels*.05) + (pennies*.01) |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
t | area_code_prefix = phone_number // 10000 | t | area_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_prefix % 1000 |
| print('(',area_code,')',' ',prefix,'-',line_number, sep='') | | print('(',area_code,')',' ',prefix,'-',line_number,sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 22
Student ID: 340, P-Value: 5.04e-02
Nearest Neighbor ID: 15
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print("First name:", first_name) | | print("First name:", first_name) |
| print("Last name:", last_name) | | print("Last name:", last_name) |
| print("Age:", age) | | print("Age:", age) |
| print("Major:", major) | | print("Major:", major) |
| print("School year:", school_year) | | print("School year:", school_year) |
n | print("School name:", school_name)num_quarters = float(input()) | n | print("School name:", school_name) |
| | | num_quarters = float(input()) |
| num_dimes = float(input()) | | num_dimes = float(input()) |
| num_nickels = float(input()) | | num_nickels = float(input()) |
| num_pennies = float(input()) | | num_pennies = float(input()) |
t | dollars = (num_quarters * 0.25) + (num_dimes * 0.10) + (num_nickels * 0.05) + (n | t | dollars = (.25 * num_quarters) + (.1 * num_dimes) + (.05 * num_nickels) + (.01 * |
| um_pennies * 0.01) | | num_pennies) |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | line_number = (phone_number % 10000) |
| first_three = phone_number // 10000000 | | |
| middle_three = (phone_number // 10000) % 1000 | | prefix = ((phone_number // 10000) % 1000) |
| last_four = (phone_number % 1000000) % 10000 | | area_code = ((phone_number // 10000000) % 1000) |
| print(f'({first_three}) {middle_three}-{last_four}') | | print(f'({area_code}) {prefix}-{line_number}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 23
Student ID: 15, P-Value: 5.04e-02
Nearest Neighbor ID: 340
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print("First name:", first_name) | | print("First name:", first_name) |
| print("Last name:", last_name) | | print("Last name:", last_name) |
| print("Age:", age) | | print("Age:", age) |
| print("Major:", major) | | print("Major:", major) |
| print("School year:", school_year) | | print("School year:", school_year) |
n | print("School name:", school_name) | n | print("School name:", school_name)num_quarters = float(input()) |
| num_quarters = float(input()) | | |
| num_dimes = float(input()) | | num_dimes = float(input()) |
| num_nickels = float(input()) | | num_nickels = float(input()) |
| num_pennies = float(input()) | | num_pennies = float(input()) |
t | dollars = (.25 * num_quarters) + (.1 * num_dimes) + (.05 * num_nickels) + (.01 * | t | dollars = (num_quarters * 0.25) + (num_dimes * 0.10) + (num_nickels * 0.05) + (n |
| num_pennies) | | um_pennies * 0.01) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}') |
| line_number = (phone_number % 10000) | | phone_number = int(input()) |
| | | first_three = phone_number // 10000000 |
| prefix = ((phone_number // 10000) % 1000) | | middle_three = (phone_number // 10000) % 1000 |
| area_code = ((phone_number // 10000000) % 1000) | | last_four = (phone_number % 1000000) % 10000 |
| print(f'({area_code}) {prefix}-{line_number}') | | print(f'({first_three}) {middle_three}-{last_four}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 24
Student ID: 434, P-Value: 5.22e-02
Nearest Neighbor ID: 10
Student (left) and Nearest Neighbor (right).
n | first_name = input() | n | user_first_name = input() |
| last_name =input() | | user_last_name = input() |
| age = input() | | user_age = input() |
| Major = input() | | user_major = input() |
| school_year = input() | | user_school_year = input() |
| school_name =input() | | user_school_name = input() |
| print("First name: {}".format(first_name)) | | print("First name:", user_first_name) |
| print("Last name: {}".format(last_name)) | | print("Last name:", user_last_name) |
| print("Age: {}".format(age)) | | print("Age:", user_age) |
| print("Major: {}".format(Major)) | | print("Major:", user_major) |
| print("School year: {}".format(school_year)) | | print("School year:", user_school_year) |
| print("School name: {}".format(school_name)) | | print("School name:", user_school_name) |
| quarters = int(input()) | | quarters = int(input()) |
| dimes = int(input()) | | dimes = int(input()) |
n | nickels= int(input()) | n | nickels = int(input()) |
| pennies= int(input()) | | pennies = int(input()) |
| dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 | | dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 |
n | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | n | print("Amount: ${:.2f}".format(dollars)) |
| | | phone_number = int(input()) |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | print('(',area_code,')',' ',prefix,'-',line_number, sep='') | t | print('(',area_code, ')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 25
Student ID: 488, P-Value: 6.22e-02
Nearest Neighbor ID: 53
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print("First name:" , first_name) | | print("First name:" , first_name) |
| print("Last name:" , last_name) | | print("Last name:" , last_name) |
| print("Age:" , age) | | print("Age:" , age) |
| print("Major:" , major) | | print("Major:" , major) |
| print("School year:" , school_year) | | print("School year:" , school_year) |
t | print("School name:" , school_name) | t | print("School name:" , school_name)quarters = int(input()) |
| import math | | |
| quarters = float(input()) | | |
| dimes = float(input()) | | dimes = int(input()) |
| nickels = float(input()) | | nickels = int(input()) |
| pennies = float(input()) | | pennies = int(input()) |
| quarters = quarters * 0.25 | | cents = ((quarters*25) + (dimes*10) + (nickels*5) + (pennies*1)) |
| dimes = dimes * 0.10 | | dollars = cents / 100.00 |
| nickels = nickels * 0.05 | | |
| pennies = pennies * 0.01 | | |
| dollars = quarters + dimes + nickels + pennies | | |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}'.format(dollars))phone_number = int(input()) |
| last_four = phone_number % 10000 | | last_four = phone_number % 10000 |
| middle = phone_number // 10000 | | middle = phone_number // 10000 |
| first_three = phone_number // 10000000 | | first_three = phone_number // 10000000 |
| middle_three = middle % 1000 | | middle_three = middle % 1000 |
| print("("+str(first_three)+") "+str(middle_three)+"-"+str(last_four)) | | print("("+str(first_three)+") "+str(middle_three)+"-"+str(last_four)) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 26
Student ID: 53, P-Value: 6.22e-02
Nearest Neighbor ID: 488
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print("First name:" , first_name) | | print("First name:" , first_name) |
| print("Last name:" , last_name) | | print("Last name:" , last_name) |
| print("Age:" , age) | | print("Age:" , age) |
| print("Major:" , major) | | print("Major:" , major) |
| print("School year:" , school_year) | | print("School year:" , school_year) |
t | print("School name:" , school_name)quarters = int(input()) | t | print("School name:" , school_name) |
| | | import math |
| | | quarters = float(input()) |
| dimes = int(input()) | | dimes = float(input()) |
| nickels = int(input()) | | nickels = float(input()) |
| pennies = int(input()) | | pennies = float(input()) |
| cents = ((quarters*25) + (dimes*10) + (nickels*5) + (pennies*1)) | | quarters = quarters * 0.25 |
| dollars = cents / 100.00 | | dimes = dimes * 0.10 |
| | | nickels = nickels * 0.05 |
| | | pennies = pennies * 0.01 |
| | | dollars = quarters + dimes + nickels + pennies |
| print(f'Amount: ${dollars:.2f}'.format(dollars))phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| last_four = phone_number % 10000 | | last_four = phone_number % 10000 |
| middle = phone_number // 10000 | | middle = phone_number // 10000 |
| first_three = phone_number // 10000000 | | first_three = phone_number // 10000000 |
| middle_three = middle % 1000 | | middle_three = middle % 1000 |
| print("("+str(first_three)+") "+str(middle_three)+"-"+str(last_four)) | | print("("+str(first_three)+") "+str(middle_three)+"-"+str(last_four)) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 27
Student ID: 174, P-Value: 6.77e-02
Nearest Neighbor ID: 320
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print('First name:', first_name) | | print('First name:', first_name) |
| print('Last name:', last_name) | | print('Last name:', last_name) |
| print('Age:', age) | | print('Age:', age) |
| print('Major:', major) | | print('Major:', major) |
| print('School year:', school_year) | | print('School year:', school_year) |
t | print('School name:', school_name)quarters = (float(input())) * 0.25 | t | print('School name:', school_name)quarters = float(input())*.25 |
| dimes = (float(input())) * 0.10 | | dimes = float(input())*.1 |
| nickels = (float(input())) * 0.05 | | nickels = float(input())*.05 |
| pennies = float(input()) * 0.01 | | pennies = float(input())*.01 |
| dollars = (quarters + dimes + nickels + pennies) | | dollars = float(quarters + dimes + nickels + pennies) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}') |
| | | phone_number = int(input()) |
| area_code = phone_number // 10000000 | | first_three = (phone_number // 10000000) |
| prefix_num = (phone_number // 10000) % 1000 | | second_three = ((phone_number % 10000000) // 10000) |
| line_num = phone_number % 10000 | | last_four = (phone_number % 10000) |
| print('({}) {}-{}'.format(area_code,prefix_num,line_num)) | | print('({}) {}-{}'.format(first_three, second_three, last_four)) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 28
Student ID: 320, P-Value: 6.77e-02
Nearest Neighbor ID: 174
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print('First name:', first_name) | | print('First name:', first_name) |
| print('Last name:', last_name) | | print('Last name:', last_name) |
| print('Age:', age) | | print('Age:', age) |
| print('Major:', major) | | print('Major:', major) |
| print('School year:', school_year) | | print('School year:', school_year) |
t | print('School name:', school_name)quarters = float(input())*.25 | t | print('School name:', school_name)quarters = (float(input())) * 0.25 |
| dimes = float(input())*.1 | | dimes = (float(input())) * 0.10 |
| nickels = float(input())*.05 | | nickels = (float(input())) * 0.05 |
| pennies = float(input())*.01 | | pennies = float(input()) * 0.01 |
| dollars = float(quarters + dimes + nickels + pennies) | | dollars = (quarters + dimes + nickels + pennies) |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | |
| first_three = (phone_number // 10000000) | | area_code = phone_number // 10000000 |
| second_three = ((phone_number % 10000000) // 10000) | | prefix_num = (phone_number // 10000) % 1000 |
| last_four = (phone_number % 10000) | | line_num = phone_number % 10000 |
| print('({}) {}-{}'.format(first_three, second_three, last_four)) | | print('({}) {}-{}'.format(area_code,prefix_num,line_num)) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 29
Student ID: 150, P-Value: 7.23e-02
Nearest Neighbor ID: 15
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
n | | n | last_name = input() |
| | | age = input() |
| | | major = input() |
| | | school_year = input() |
| | | school_name = input() |
| print("First name:", first_name) | | print("First name:", first_name) |
n | last_name = input() | n | |
| print("Last name:", last_name) | | print("Last name:", last_name) |
n | age = input() | n | |
| print("Age:", age) | | print("Age:", age) |
n | major = input() | n | |
| print("Major:", major) | | print("Major:", major) |
n | school_year = input() | n | |
| print("School year:", school_year) | | print("School year:", school_year) |
n | school_name = input() | n | |
| print("School name:", school_name) | | print("School name:", school_name) |
n | num_quarters = int(input()) *25 | n | num_quarters = float(input()) |
| num_dimes = int(input()) * 10 | | num_dimes = float(input()) |
| num_nickels = int(input()) * 5 | | num_nickels = float(input()) |
| num_pennies = int(input()) | | num_pennies = float(input()) |
| dollars = (num_quarters + num_dimes + num_nickels + num_pennies)/100 | | dollars = (.25 * num_quarters) + (.1 * num_dimes) + (.05 * num_nickels) + (.01 * |
| | | num_pennies) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
t | | t | line_number = (phone_number % 10000) |
| | | prefix = ((phone_number // 10000) % 1000) |
| area_code = (phone_number // 10000000) | | area_code = ((phone_number // 10000000) % 1000) |
| prefix1 = (phone_number // 10000) | | |
| prefix = prefix1%1000 | | |
| line_num = phone_number%10000 | | |
| print(f'({area_code}) {prefix}-{line_num}') | | print(f'({area_code}) {prefix}-{line_number}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 30
Student ID: 362, P-Value: 7.35e-02
Nearest Neighbor ID: 340
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
| print("First name:", first_name) | | print("First name:", first_name) |
| print("Last name:", last_name) | | print("Last name:", last_name) |
| print("Age:", age) | | print("Age:", age) |
| print("Major:", major) | | print("Major:", major) |
| print("School year:", school_year) | | print("School year:", school_year) |
t | print("School name:", school_name)num_quarters = int(input()) | t | print("School name:", school_name)num_quarters = float(input()) |
| num_dimes = int(input()) | | num_dimes = float(input()) |
| num_nickels = int(input()) | | num_nickels = float(input()) |
| num_pennies = int(input()) | | num_pennies = float(input()) |
| amt_dollars = (num_quarters * 0.25) + (num_dimes * 0.1) + (num_nickels * 0.05) + | | dollars = (num_quarters * 0.25) + (num_dimes * 0.10) + (num_nickels * 0.05) + (n |
| (num_pennies * 0.01) | | um_pennies * 0.01) |
| print(f'Amount: ${amt_dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}') |
| print(f'({phone_number // 10**7}) {(phone_number % 10**7) // 10**4}-{phone_numbe | | phone_number = int(input()) |
| r % 10**4}') | | |
| | | first_three = phone_number // 10000000 |
| | | middle_three = (phone_number // 10000) % 1000 |
| | | last_four = (phone_number % 1000000) % 10000 |
| | | print(f'({first_three}) {middle_three}-{last_four}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 31
Student ID: 48, P-Value: 8.22e-02
Nearest Neighbor ID: 15
Student (left) and Nearest Neighbor (right).
n | firstName = input() | n | first_name = input() |
| lastName = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
n | schoolYear = input() | n | school_year = input() |
| schoolName = input() | | school_name = input() |
| print("First name:", firstName) | | print("First name:", first_name) |
| print("Last name:", lastName) | | print("Last name:", last_name) |
| print("Age:", age) | | print("Age:", age) |
| print("Major:", major) | | print("Major:", major) |
n | print("School year:", schoolYear) | n | print("School year:", school_year) |
| print("School name:", schoolName)num_quarters = float(input()) | | print("School name:", school_name) |
| | | num_quarters = float(input()) |
| num_dimes = float(input()) | | num_dimes = float(input()) |
| num_nickels = float(input()) | | num_nickels = float(input()) |
| num_pennies = float(input()) | | num_pennies = float(input()) |
t | total = num_quarters * .25 + num_dimes * .10 + num_nickels * .05 + num_pennies * | t | dollars = (.25 * num_quarters) + (.1 * num_dimes) + (.05 * num_nickels) + (.01 * |
| .01 | | num_pennies) |
| print(f'Amount: ${total:.2f}') | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | line_number = (phone_number % 10000) |
| area_code = phone_number//10000000 | | |
| prefix = (phone_number // 10000) % 1000 | | prefix = ((phone_number // 10000) % 1000) |
| line_number = phone_number % 10000 | | area_code = ((phone_number // 10000000) % 1000) |
| print(f'({area_code}) {prefix}-{line_number}') | | print(f'({area_code}) {prefix}-{line_number}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 32
Student ID: 241, P-Value: 8.35e-02
Nearest Neighbor ID: 340
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
n | print("First name: ", first_name) | n | print("First name:", first_name) |
| print("Last name: ", last_name) | | print("Last name:", last_name) |
| print("Age: ", age) | | print("Age:", age) |
| print("Major: ", major) | | print("Major:", major) |
| print("School year: ", school_year) | | print("School year:", school_year) |
| print("School name: ", school_name)num_quarters = float(input()) * 25 | | print("School name:", school_name)num_quarters = float(input()) |
| num_dimes = float(input()) * 10 | | num_dimes = float(input()) |
| num_nickels = float(input()) * 5 | | num_nickels = float(input()) |
| num_pennies = float(input()) | | num_pennies = float(input()) |
n | dollars = (num_quarters + num_dimes + num_nickels + num_pennies) / 100 | n | dollars = (num_quarters * 0.25) + (num_dimes * 0.10) + (num_nickels * 0.05) + (n |
| | | um_pennies * 0.01) |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}') |
| phone_number = int(input()) | | phone_number = int(input()) |
t | first_section = (phone_number // 10000000) | t | first_three = phone_number // 10000000 |
| middle_section = (phone_number // 10000) % 1000 | | middle_three = (phone_number // 10000) % 1000 |
| last_section = phone_number % 10000 | | last_four = (phone_number % 1000000) % 10000 |
| print("("+str(first_section)+")"+" "+str(middle_section)+"-"+str(last_section)) | | print(f'({first_three}) {middle_three}-{last_four}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 33
Student ID: 447, P-Value: 9.29e-02
Nearest Neighbor ID: 434
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
n | last_name = input() | n | last_name =input() |
| age = int(input()) | | age = input() |
| major = input() | | Major = input() |
| school_year = input() | | school_year = input() |
n | school_name = input() | n | school_name =input() |
| print("First name:", first_name) | | print("First name: {}".format(first_name)) |
| print("Last name:", last_name) | | print("Last name: {}".format(last_name)) |
| print("Age:", age) | | print("Age: {}".format(age)) |
| print("Major:", major) | | print("Major: {}".format(Major)) |
| print("School year:", school_year) | | print("School year: {}".format(school_year)) |
| print("School name:", school_name)quarters = int(input()) * 0.25 | | print("School name: {}".format(school_name)) |
| | | quarters = int(input()) |
| dimes = int(input()) * 0.10 | | dimes = int(input()) |
| nickels = int(input()) * 0.05 | | nickels= int(input()) |
| pennies = int(input())* 0.01 | | pennies= int(input()) |
| dollars = quarters + dimes + nickels + pennies | | dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01 |
| print(f'Amount: ${dollars:.2f}') | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| phone_number = int(input()) | | line_number = phone_number % 10000 |
| area_code_prefix = phone_number // 10000 | | area_code_prefix = phone_number // 10000 |
| area_code = area_code_prefix // 1000 | | area_code = area_code_prefix // 1000 |
| prefix = area_code_prefix % 1000 | | prefix = area_code_prefix % 1000 |
t | line_number = phone_number % 10000 | t | |
| print('(',area_code,')',' ',prefix,'-',line_number, sep ='') | | print('(',area_code,')',' ',prefix,'-',line_number, sep='') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 34
Student ID: 330, P-Value: 9.29e-02
Nearest Neighbor ID: 164
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
n | print('First name: '+first_name) | n | print('First name:',first_name) |
| print('Last name: '+last_name) | | print('Last name:',last_name) |
| print('Age: '+age) | | print('Age:',age) |
| print('Major: '+major) | | print('Major:',major) |
| print('School year: '+school_year) | | print('School year:',school_year) |
| print('School name: '+school_name) | | print('School name:',school_name)a = float(input()) |
| | | quarters = a * 0.25 |
| quarters = float(input()) | | b = float(input()) |
| | | dimes = b * 0.10 |
| | | c = float(input()) |
| | | nickels = c * 0.05 |
| dimes = float(input()) | | d = float(input()) |
| nickles = float(input()) | | pennies = d * 0.01 |
| pennies = float(input()) | | dollars = quarters + dimes + nickels + pennies |
| dollars = (quarters * 0.25) + (dimes * 0.1) +(nickles * 0.05) + (pennies * 0.01) | | |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| area_code = phone_number // 10000000 | | area_code = phone_number // 10000000 |
t | prefix = phone_number // 10000 %1000 | t | prefix = phone_number % 10000000 |
| | | prefix = prefix // 10000 |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| print(f'({area_code}) {prefix}-{line_number}') | | print(f'({area_code}) {prefix}-{line_number}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 35
Student ID: 164, P-Value: 9.29e-02
Nearest Neighbor ID: 330
Student (left) and Nearest Neighbor (right).
f | first_name = input() | f | first_name = input() |
| last_name = input() | | last_name = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| school_year = input() | | school_year = input() |
| school_name = input() | | school_name = input() |
n | print('First name:',first_name) | n | print('First name: '+first_name) |
| print('Last name:',last_name) | | print('Last name: '+last_name) |
| print('Age:',age) | | print('Age: '+age) |
| print('Major:',major) | | print('Major: '+major) |
| print('School year:',school_year) | | print('School year: '+school_year) |
| print('School name:',school_name)a = float(input()) | | print('School name: '+school_name) |
| quarters = a * 0.25 | | |
| b = float(input()) | | quarters = float(input()) |
| dimes = b * 0.10 | | |
| c = float(input()) | | |
| nickels = c * 0.05 | | |
| d = float(input()) | | dimes = float(input()) |
| pennies = d * 0.01 | | nickles = float(input()) |
| dollars = quarters + dimes + nickels + pennies | | pennies = float(input()) |
| | | dollars = (quarters * 0.25) + (dimes * 0.1) +(nickles * 0.05) + (pennies * 0.01) |
| print(f'Amount: ${dollars:.2f}')phone_number = int(input()) | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| area_code = phone_number // 10000000 | | area_code = phone_number // 10000000 |
t | prefix = phone_number % 10000000 | t | prefix = phone_number // 10000 %1000 |
| prefix = prefix // 10000 | | |
| line_number = phone_number % 10000 | | line_number = phone_number % 10000 |
| print(f'({area_code}) {prefix}-{line_number}') | | print(f'({area_code}) {prefix}-{line_number}') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 36
Student ID: 211, P-Value: 9.96e-01
Nearest Neighbor ID: 204
Student (left) and Nearest Neighbor (right).
t | print('First name: David') | t | First_name = input() |
| print('Last name: Hilbert') | | print("First name:", First_name) |
| print('Age: 20') | | Last_name = input() |
| print('Major: Mathematics') | | print("Last name:", Last_name) |
| print('School year: Senior') | | year = input() |
| print('School name: University of Konigsberg')print('Amount: $1.41') | | print("Age:", year) |
| phone_number = int(input()) | | path = input() |
| print('(800) 555-1212') | | print("Major:", path) |
| | | School_year = input() |
| | | print("School year:", School_year) |
| | | School_name = input() |
| | | print("School name:", School_name)import math |
| | | w = int(input()) |
| | | x = int(input()) |
| | | y = int(input()) |
| | | z = int(input()) |
| | | dollars = ( w + x + y + z) |
| | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| | | print(phone_number//) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 37
Student ID: 271, P-Value: 9.93e-01
Nearest Neighbor ID: 356
Student (left) and Nearest Neighbor (right).
f | fname = input() | f | fname = input() |
| lname = input() | | lname = input() |
| age = input() | | age = input() |
| major = input() | | major = input() |
| year = input() | | year = input() |
| sname = input() | | sname = input() |
t | print(f"First name: {fname}") | t | print('First name:', fname) |
| print(f"Last name: {lname}") | | print('Last name:', lname) |
| print(f"Age: {age}") | | print('Age:', age) |
| print(f"Major: {major}") | | print('Major:', major) |
| print(f"School year: {year}") | | print('School year:', year) |
| print(f"School name: {sname}")from functools import reduce | | print('School name:', sname)quarters = int(input()) |
| print(f"Amount: ${reduce(lambda sum, x: sum + x[0]*x[1], zip([int(input()) for _ | | dimes = int(input()) |
| in range(4)], [0.25,0.1,0.05,0.01]), 0):.2f}")phone_number = int(input()) | | |
| | | nickels = int(input()) |
| | | pennies = int(input()) |
| | | dollars = (0.25 * quarters) + (0.10 * dimes) + (0.05 * nickels) + (0.01 * pennie |
| | | s) |
| | | print(f'Amount: ${dollars:.2f}')phone_number = int(input()) |
| | | prefix = phone_number // 10000000 |
| | | area_code = phone_number // 10000 |
| | | area_code = area_code % 1000 |
| block3 = phone_number % 10000 | | line_number = phone_number % 10000 |
| phone_number = phone_number // 10000 | | print(f'({prefix}) {area_code}-{line_number}') |
| block2 = phone_number % 1000 | | |
| phone_number = phone_number // 1000 | | |
| block1 = phone_number % 1000 | | |
| phone_number = phone_number // 1000 | | |
| print(f"({block1}) {block2}-{block3}") | | |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|