How to Print String and Blank Line in Python with Examples - pythoninhindis
पाइथन में किसी भी शब्द, लाइन या स्ट्रिंग को प्रिंट करना बहुत ही आसान है| इस पोस्ट में हम जानेगे-
- How to Print Simple String in Python
- How to print Blank line in Python
- How to print end Command in Python
Topics of Python Tutorials In Hindi:
- Python Introduction in Hindi
- Python Installation in Hindi
- Python Syntax in Hindi
- Python Comments in Hindi
- Python Variables in Hindi
- Python Keywords in Hindi
- Python Data Types in Hindi
- Python Type Casting in Hindi
- Python Operators in Hindi
- Python Variable Scope in Hindi
- Python if else in Hindi
- Python while Loop in Hindi
- Python Introduction in Hindi
- Python Installation in Hindi
- Python Syntax in Hindi
- Python Comments in Hindi
- Python Variables in Hindi
- Python Keywords in Hindi
- Python Data Types in Hindi
- Python Type Casting in Hindi
- Python Operators in Hindi
- Python Variable Scope in Hindi
- Python if else in Hindi
- Python while Loop in Hindi
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 Computer”)
print (8 * “\n”)
print (“Welcome to Computer”)
Output
Welcome to Computer
..
..
Welcome to Computer
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@
*****************************
How to print Blank line in Python, How to print end Command in Python, How to Print in Python, How to Print in Python in hindi, How to Print in Python with Examples, How to Print in Python with Examples in hindi, How to Print Simple String in Python, print in python, python, python in hindi, python tutorial, python tutorial in hindi, पाइथन में किसी स्ट्रिंग या लाइन को प्रिंट कैसे करें
**********************
Tags:
Python In Hindi
very nice
जवाब देंहटाएं