“Input Kamus Python” Kode Jawaban

Kamus Input Pengguna Python

# Creates key, value for dict based on user input
# Combine with loops to avoid manual repetition
class_list = dict() 
data = input('Enter name & score separated by ":" ') 
temp = data.split(':') class_list[temp[0]] = int(temp[1])  

OR

key = input("Enter key") 
value = input("Enter value") 
class_list[key] = [value]  
OuttaSpace

Input Kamus Python

class_list = dict() data = input('Enter name & score separated by ":" ') temp = data.split(':') class_list[temp[0]] = int(temp[1])  # Displaying the dictionary for key, value in class_list.items(): 	print('Name: {}, Score: {}'.format(key, value)) 
Handsome Hoopoe

Input Kamus dari Pengguna di Python3

d=dict(input().split() for x in range(n))
print(d)
Plain Pheasant

Jawaban yang mirip dengan “Input Kamus Python”

Pertanyaan yang mirip dengan “Input Kamus Python”

Lebih banyak jawaban terkait untuk “Input Kamus Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya