प्रश्न पूछता: "कैसे यह अजगर में किया जा सकता 3?"
उपयोग इस अजगर 3.x के साथ निर्माण:
for item in [1,2,3,4]:
print(item, " ", end="")
यह उत्पन्न करेगा:
1 2 3 4
अधिक जानकारी के लिए यह Python doc देखें:
Old: print x, # Trailing comma suppresses newline
New: print(x, end=" ") # Appends a space instead of a newline
-
एक तरफ:
अलावा, print()
समारोह भी sep
पैरामीटर एक निर्दिष्ट कैसे अलग-अलग आइटम मुद्रित करने के लिए अलग किया जाना चाहिए देता है कि प्रदान करता है। उदा।
In [21]: print('this','is', 'a', 'test') # default single space between items
this is a test
In [22]: print('this','is', 'a', 'test', sep="") # no spaces between items
thisisatest
In [22]: print('this','is', 'a', 'test', sep="--*--") # user specified separation
this--*--is--*--a--*--test
तुम सिर्फ कर सकता है 'प्रिंट ('' [में [1, 2, 3, 4] मैं के लिए str (i)]) .join() (' –
'प्रिंट * [1, 2, 3, 4]) 'एक अंतरिक्ष अलग अनुक्रम मुद्रण के सामान्य मामले के लिए काम करता है –