• পাইথন প্রোগ্রামিং : স্ট্রিং (Python Strings in Bangla)

    1.10 Python Strings

    Accessing Values in Strings

    নিচের কোডটি লক্ষ্য করি,

    #!/usr/bin/python
    
    var1 = 'Hello World!'
    var2 = "Python Programming"
    
    print "var1[0]: ", var1[0]
    print "var2[1:5]: ", var2[1:5]


    উপরের কোডটি রান করালে নিচের ফলাফল প্রিন্ট হবে।

    var1[0]:  H
    var2[1:5]:  ytho


    Updating Strings

    অন্য একটি স্ট্রিং এর সাথে কোন ভেরিয়েবল এসাইন করে একটি স্ট্রিং কে আপডেট করা যায়। যেমনঃ

    #!/usr/bin/python
    
    var1 = 'Hello World!'
    
    print "Updated String :- ", var1[:6] + 'Python'


    উপরের কোডটি রান করালে নিচের ফলাফল আসবে।

    Updated String :- Hello Python


    Escape Characters

    নিচের টেবিলে কিছু Escape Characters দেয়া হল, যেগুলো কখনো প্রোগ্রাম রেসাল্টের প্রিন্টে আসে না। এধরনের Escape Characters ব্যবহার করতে কিছু Backslash notation ব্যবহৃত হয়।

    Backslash
    notation
    Hexadecimal
    character
    Description
    \a0x07Bell or alert
    \b0x08Backspace
    \cxControl-x
    \C-xControl-x
    \e0x1bEscape
    \f0x0cFormfeed
    \M-\C-xMeta-Control-x
    \n0x0aNewline
    \nnnOctal notation, where n is in the range 0.7
    \r0x0dCarriage return
    \s0x20Space
    \t0x09Tab
    \v0x0bVertical tab
    \xCharacter x
    \xnnHexadecimal notation, where n is in the range 0.9, a.f, or A.F

    Triple Quotes

    Python এ triple quote এর সাহায্যে একাধিক লাইনের স্টেটমেন্ট লেখা হয়। triple quote বোঝাতে তিনটি সিঙ্গেল (’’’) অথবা ডাবল কোটিং (”””) চিহ্ন ব্যবহৃত হয়।

    #!/usr/bin/python
    
    para_str = """this is a long string that is made up of
    several lines and non-printable characters such as
    TAB ( \t ) and they will show up that way when displayed.
    NEWLINEs within the string, whether explicitly given like
    this within the brackets [ \n ], or just a NEWLINE within
    the variable assignment will also show up.
    """
    print para_str


    উপরের কোডটির রেসাল্ট হবে,

    this is a long string that is made up of
    several lines and non-printable characters such as
    TAB (    ) and they will show up that way when displayed.
    NEWLINEs within the string, whether explicitly given like
    this within the brackets [
     ], or just a NEWLINE within
    the variable assignment will also show up.


    Raw strings ব্যবহার করলে backslash character গুলোর ব্যবহার হয় না। যেমন,

    #!/usr/bin/python
    
    print r'C:\\nowhere'


    উপরের কোডটি চালালে নিচের রেসাল্ট আসবে।

    C:\\nowhere


    Unicode String

    Normal strings গুলোকে Python 8-bit ASCII ফরম্যাটে স্টোর করে, কিন্তু Unicode strings গুলো 16-bit Unicode আকারে স্টোর হয়। এর ফলে একটু ভিন্ন ধরনের ক্যারেকটার ব্যবহার করা সম্ভব হয়।

    #!/usr/bin/python
    
    print u'Hello, world!'


    উপরের কোডটি নিচের রেসাল্ট দিবে।

    Hello, world!


    Unicode strings এ prefix u ব্যবহৃত হয়, আর raw strings এ prefix r এর ব্যবহার হয়।

    Built-in String Methods

    Python নিচের বিল্ট−ইন মেথোডগুলোর সাহায্যে স্ট্রিং গুলোকে প্রভাবিত করতে পারে।
    SNMethods with Description
    1capitalize()
    Capitalizes first letter of string
    2center(width, fillchar)
    Returns a space-padded string with the original string centered to a total of width columns.
    3count(str, beg= 0,end=len(string))
    Counts how many times str occurs in string or in a substring of string if starting index beg and ending index end are given.
    4decode(encoding='UTF-8',errors='strict')
    Decodes the string using the codec registered for encoding. encoding defaults to the default string encoding.
    5encode(encoding='UTF-8',errors='strict')
    Returns encoded string version of string; on error, default is to raise a ValueError unless errors is given with 'ignore' or 'replace'.
    6endswith(suffix, beg=0, end=len(string))
    Determines if string or a substring of string (if starting index beg and ending index end are given) ends with suffix; returns true if so and false otherwise.
    7expandtabs(tabsize=8)
    Expands tabs in string to multiple spaces; defaults to 8 spaces per tab if tabsize not provided.
    8find(str, beg=0 end=len(string))
    Determine if str occurs in string or in a substring of string if starting index beg and ending index end are given returns index if found and -1 otherwise.
    9index(str, beg=0, end=len(string))
    Same as find(), but raises an exception if str not found.
    10isalnum()
    Returns true if string has at least 1 character and all characters are alphanumeric and false otherwise.
    11isalpha()
    Returns true if string has at least 1 character and all characters are alphabetic and false otherwise.
    12isdigit()
    Returns true if string contains only digits and false otherwise.
    13islower()
    Returns true if string has at least 1 cased character and all cased characters are in lowercase and false otherwise.
    14isnumeric()
    Returns true if a unicode string contains only numeric characters and false otherwise.
    15isspace()
    Returns true if string contains only whitespace characters and false otherwise.
    16istitle()
    Returns true if string is properly "titlecased" and false otherwise.
    17isupper()
    Returns true if string has at least one cased character and all cased characters are in uppercase and false otherwise.
    18join(seq)
    Merges (concatenates) the string representations of elements in sequence seq into a string, with separator string.
    19len(string)
    Returns the length of the string
    20ljust(width[, fillchar])
    Returns a space-padded string with the original string left-justified to a total of width columns.
    21lower()
    Converts all uppercase letters in string to lowercase.
    22lstrip()
    Removes all leading whitespace in string.
    23maketrans()
    Returns a translation table to be used in translate function.
    24max(str)
    Returns the max alphabetical character from the string str.
    25min(str)
    Returns the min alphabetical character from the string str.
    26replace(old, new [, max])
    Replaces all occurrences of old in string with new or at most max occurrences if max given.
    27rfind(str, beg=0,end=len(string))
    Same as find(), but search backwards in string.
    28rindex( str, beg=0, end=len(string))
    Same as index(), but search backwards in string.
    29rjust(width,[, fillchar])
    Returns a space-padded string with the original string right-justified to a total of width columns.
    30rstrip()
    Removes all trailing whitespace of string.
    31split(str="", num=string.count(str))
    Splits string according to delimiter str (space if not provided) and returns list of substrings; split into at most num substrings if given.
    32splitlines( num=string.count('\n'))
    Splits string at all (or num) NEWLINEs and returns a list of each line with NEWLINEs removed.
    33startswith(str, beg=0,end=len(string))
    Determines if string or a substring of string (if starting index beg and ending index end are given) starts with substring str; returns true if so and false otherwise.
    34strip([chars])
    Performs both lstrip() and rstrip() on string
    35swapcase()
    Inverts case for all letters in string.
    36title()
    Returns "titlecased" version of string, that is, all words begin with uppercase and the rest are lowercase.
    37translate(table, deletechars="")
    Translates string according to translation table str(256 chars), removing those in the del string.
    38upper()
    Converts lowercase letters in string to uppercase.
    39zfill (width)
    Returns original string leftpadded with zeros to a total of width characters; intended for numbers, zfill() retains any sign given (less one zero).
    40isdecimal()
    Returns true if a unicode string contains only decimal characters and false otherwise.
  • 0 comments:

    Post a Comment

    New Research

    Attention Mechanism Based Multi Feature Fusion Forest for Hyperspectral Image Classification.

    CBS-GAN: A Band Selection Based Generative Adversarial Net for Hyperspectral Sample Generation.

    Multi-feature Fusion based Deep Forest for Hyperspectral Image Classification.

    ADDRESS

    388 Lumo Rd, Hongshan, Wuhan, Hubei, China

    EMAIL

    contact-m.zamanb@yahoo.com
    mostofa.zaman@cug.edu.cn

    TELEPHONE

    #
    #

    MOBILE

    +8615527370302,
    +8807171546477