पाइथन में किसी स्ट्रिंग या लाइन को प्रिंट कैसे करें|

पाइथन में किसी स्ट्रिंग या लाइन को प्रिंट कैसे करें|
(How to Print String and Blank Line in Python with Examples)

पाइथन में किसी भी शब्द, लाइन या स्ट्रिंग को प्रिंट करना बहुत ही आसान है| इस पोस्ट में हम जानेगे-

  1. How to Print Simple String in Python
  2. How to print Blank line in Python
  3. How to print end Command in Python

How to print simple string in Python?

Example: 1

Welcome to ComputerHindiNotes को प्रिंट करने के लिए, निम्नानुसार प्रिंट () फ़ंक्शन का उपयोग करें:

print (“Welcome to ComputerHindiNotes”)

Output:
Welcome to ComputerHindiNotes

Example 2:

यदि आप पाँच देशों का नाम प्रिंट करना चाहते हैं, तो आप इस तरह लिख सकते हैं:


print(“USA”)
print(“Canada”)
print(“Germany”)
print(“France”)
print(“Japan”)

Output:

USA
Canada
Germany
France
Japan

How to print blank lines in Python?

कभी-कभी आपको अपने पायथन प्रोग्राम में Blank line को प्रिंट करने की आवश्यकता होती है। इस कार्य को करने के लिए एक उदाहरण निम्नलिखित हैं।

8 Blank line को प्रिंट करने के लिए –

print (8 * “\n”)
या
print (“\n\n\n\n\n\n\n\n\n”)


Example –

print (“Welcome to ComputerHindiNotes”)
print (8 * “\n”)
print (“Welcome to ComputerHindiNotes”)

Output

Welcome to ComputerHindiNotes

 

 

 

 

 

 

 

Welcome to ComputerHindiNotes

Print end command in Python?

डिफ़ॉल्ट रूप से, पाइथन का प्रिंट () फ़ंक्शन एक नई लाइन के साथ समाप्त होता है। यह फ़ंक्शन ‘end’ नामक पैरामीटर के साथ आता है। इस पैरामीटर का डिफ़ॉल्ट मान ‘\ n’ है, अर्थात, new line character| आप इस पैरामीटर का उपयोग करके किसी भी character or string के साथ एक प्रिंट स्टेटमेंट को समाप्त कर सकते हैं। यह केवल पायथन 3+ में उपलब्ध है|

Example 1:

print (“Welcome to”, end = ‘ ‘)
print (“ComputerHindiNotes”, end = ‘!’)

Output:

Welcome to ComputerHindiNotes!

Example 2:

# ends the output with ‘@.’
print(“Python” , end = ‘@’)

Output:

Python@


error: Content is protected !!