Python strings
string character का sequence होते है इसमें letter, numbers व special symbol उपयोग किया जा सकते है। Python में string को double quotes व single quotes दोनों में रखा जा सकता है।
Python में string bytes का array है।
Example
print("Hello World") # string in double quote
print('Hello World') # string in single quote
ऊपर दिए हुए example में देख सकते है के एक string को double quote व दूसरे string को single quote में रखा गया है दोनों उपयोग valid है python में।
Multiline Strings
Multiline string के लिए तीन double quotes का उपयोग करना होता है python में।
a = """Hello world
How are you....."""
print(a)
Access single character form string
चूँकि string character का array है इसलिए हर एक character को index का उपयोग कर access किया जा सकता है।
str_hello = "Hello world";
print(str_hello[0]);
Comments now
0 टिप्पणियाँ
If you have any doubt. Please let me know