Single Choice
Easy
Qprint("Hello World") statement-এ "Hello World" কী নির্দেশ করে?
ID: #26594
কীওয়ার্ড (Keywords) in Python
4 views
Question Info
#26594Q ID
EasyDifficulty
কীওয়ার্ড (Keywords) in PythonTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
Python-এ quotation mark-এর মধ্যে লেখা text-কে
String বলা হয়। তাই
print("Hello World") statement-এ
"Hello World" একটি string value।
print() ফাংশনটি এই string value-টিকে screen-এ
প্রদর্শন করে। Python-এ string লেখার জন্য double quotation mark
(" ") অথবা single quotation mark
(' ') ব্যবহার করা যায়।
উদাহরণ হিসেবে print("Hello World") এবং
print('Hello World')—উভয় statement-ই একই
Hello World output প্রদর্শন করবে।
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic