how to get muliple vale in one line | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

how to get muliple vale in one line

like in c++ we say cin》a》b ; but what about pytho

2nd Jul 2016, 12:59 PM
harsh sharma
harsh sharma - avatar
1 Réponse
+ 1
a, b = input(), input() or if you want a list of inputed data mylist = [input() for i in range (10)] and mylist will contain 10 strings of inputed data
3rd Jul 2016, 6:42 AM
Ahmed AZ
Ahmed AZ - avatar