示例#1
0
# -*- coding: utf-8 -*-
"""
Created on Wed Nov  6 13:04:32 2019

@author: saranya
"""

total = 0

# creating a list

from utils.utils import read_arr
# read array
arr = read_arr()

# Iterate each element in list
# and add them in variale total
for ele in range(0, len(arr)):
    total = total + arr[ele]

# printing total value
print(total)
示例#2
0
# -*- coding: utf-8 -*-
"""
Created on Wed Nov  6 10:43:29 2019

@author: saranya
"""

from utils.utils import read_arr

#read list
arr = read_arr(d_type=str)

narr = []


def is_str_exists(arr, wrd):

    for word in arr:
        if word == wrd:
            return True

    return False


print(arr)
# loop to match every word
for word in arr:

    if not is_str_exists(narr, word):
        narr.append(word)