🟢 Beginner · Lesson 03
First Python Program: Hello World
पहला Python Program: Hello World
The First Program
Every programmer's journey begins with printing "Hello, World!". It proves your Python setup works and teaches the most-used function: print().
Program 1: Hello World
Python – hello.py
print("Hello, World!")Hello, World!
Save this as hello.py and run it. print() sends whatever is inside the brackets to the screen.
Program 2: Print Multiple Lines
Python – lines.py
print("Welcome to Python")
print("This is line 2")
print("Learning is fun")Welcome to Python
This is line 2
Learning is fun
Each print() automatically moves to a new line. You can also use \n inside one string to break lines.
Program 3: print() Tricks (sep and end)
Python – print_tricks.py
# sep changes the separator between items
print("2026", "06", "01", sep="-")
# end changes what comes after (default is newline)
print("Loading", end="...")
print("Done")2026-06-01
Loading...Done
sep="-"puts a dash between the items instead of a space.end="..."stops the line from breaking and adds "..." instead.- So the next
printcontinues on the same line.
How print() Works
- Items separated by commas are printed with a space between them by default.
sepcontrols what goes between items.endcontrols what goes after the whole line (default\n).
Common Mistakes
- Forgetting the quotes:
print(Hello)causes a NameError. - Using smart/curly quotes from Word instead of straight quotes.
- Wrong file extension — save as
.py.
Practice Tasks
- Print "Hello" and your name on the same line using
end. - Print today's date as DD/MM/YYYY using
sep="/". - Print a 3-line poem with one
print()using\n.
Summary
print()displays output on screen.- Each print starts a new line by default.
sep= separator between items;end= what comes after the line.
पहला Program
हर programmer का सफ़र "Hello, World!" print करने से शुरू होता है। यह साबित करता है कि आपका Python setup चल रहा है और सबसे ज़्यादा use होने वाला function सिखाता है: print()।
Program 1: Hello World
Python – hello.py
print("Hello, World!")Hello, World!
इसे hello.py के रूप में save करके run करें। print() brackets के अंदर जो भी हो उसे screen पर भेजता है।
Program 2: कई Lines Print करें
Python – lines.py
print("Welcome to Python")
print("This is line 2")
print("Learning is fun")Welcome to Python
This is line 2
Learning is fun
हर print() अपने आप नई line पर जाता है। एक ही string में \n से भी line तोड़ सकते हैं।
Program 3: print() Tricks (sep और end)
Python – print_tricks.py
# sep items के बीच separator बदलता है
print("2026", "06", "01", sep="-")
# end बदलता है कि बाद में क्या आए (default newline)
print("Loading", end="...")
print("Done")2026-06-01
Loading...Done
sep="-"items के बीच space की जगह dash लगाता है।end="..."line टूटने से रोककर "..." जोड़ता है।- इसलिए अगला
printउसी line पर continue होता है।
print() कैसे काम करता है
- Comma से अलग किए items default रूप से बीच में space के साथ print होते हैं।
sepcontrol करता है कि items के बीच क्या जाए।endcontrol करता है कि पूरी line के बाद क्या जाए (default\n)।
सामान्य गलतियाँ
- Quotes भूलना:
print(Hello)NameError देता है। - Word के smart/curly quotes use करना straight quotes की जगह।
- गलत file extension —
.pyमें save करें।
Practice Tasks
enduse करके "Hello" और अपना नाम एक ही line पर print करें।sep="/"से आज की date DD/MM/YYYY में print करें।\nसे एकprint()में 3-line कविता print करें।
सारांश
print()screen पर output दिखाता है।- हर print default रूप से नई line शुरू करता है।
sep= items के बीच separator;end= line के बाद क्या आए।