इस पोस्ट (Python Program To Print hello world) में हम देखने वाले है की हम किस तरह python में “hello world” print करते है. इससे पहले वाले पोस्ट में हमने पढ़ा था की python में comments क्या होता है और उसे कैसे लिखा जाता है. अगर अभी तक आपने वो पोस्ट नहीं पढ़ा है तो यँहा क्लिक करके पढ़ सकते है.
Python में hello world print करने के लिए इस आर्टिकल को line by line अच्छे से पढ़े.
Python Program To Print hello world In Hindi
Python में hello world print करने के लिए हम print() को इस्तेमाल में लेते है. ये एक inbuilt function है जिसका काम स्क्रीन पर आउटपुट देना होता है. Print function (print()) में double quotes के अंदर लिखे गए statement हमे ज्यूँ के त्यूं output में मिल जाते है.
Example:
print(“Welcome to hinditechclub.com”)
print(“Hii, I am print function”)

Output:
Welcome to hinditechclub.com
Hii, I am print function

hello world in Python
Program:
Output:
Read more articles: