ezoic

Wednesday, February 15, 2017

reverse a string

reverse a string, python code:

class Solution:
    def rev1(self, string1):
        k1=list(string1)
        print(k1)
        for i in range(int(len(k1)/2)):
            k1[i],k1[len(k1)-1-i]=k1[len(k1)-1-i],k1[i]
        k2=''.join(k1)
        return(k2)


No comments:

Post a Comment

R is not a simple programming language, and it does better on reading excel files than python

R is not a simple programming language, and it does better on reading excel files than python . tried to read excel files to python and R. i...