Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

Write a Python program to create all possible strings by using 'a', 'e', 'i', 'o',

'u'. Use the characters exactly once

Write a Python program to create the combinations of 3 digit combo.

numbers = []
for num in range(1000):
num=str(num).zfill(3)
print(num)
numbers.append(num)

Count the number of each character of a given text of a text file

import collections
import pprint
file_input = input('File Name: ')
with open(file_input, 'r') as info:
count = collections.Counter(info.read().upper())
value = pprint.pformat(count)
print(value)

Write a Python program to add two positive integers without using the '+' operator.

def add_without_plus_operator(a, b):


while b != 0:
data = a & b
a = a ^ b
b = data << 1
return a
print(add_without_plus_operator(2, 10))
print(add_without_plus_operator(-20, 10))
print(add_without_plus_operator(-10, -20))

Write a Python program to find the digits which are absent in a given mobile number

def absent_digits(n):
all_nums = set([0,1,2,3,4,5,6,7,8,9])
n = set([int(i) for i in n])
n = n.symmetric_difference(all_nums)
n = sorted(n)
return n
print(absent_digits([9,8,3,2,2,0,9,7,6,3]))

You might also like