-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCopies of String.py
31 lines (29 loc) · 1.03 KB
/
Copies of String.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
while True:
user_string=input('''Please Type anything:''')
while True:
try:
num1 = int(input("\nEnter number(s) for copies:"))
except ValueError:
print('''"\nPlease enter only number"''')
# can also use "num1=abs(num1)"
else:
if num1 < 0 :
print('''\n"Please enter positive number(s) only"''')
else:
break
new_string=user_string * num1
print(new_string)
while True:
Repeat=input("\nDo you want to repeat?\n\nYes or No:")
Repeat=Repeat.lower()
if Repeat not in ["yes","y","no","n"]:
print("\nPlease select correct option")
else:
break
if Repeat in ["yes","y"]:
continue
else:
if Repeat in ["no","n"]:
print("\n-----Thank you for using-----")
input()
break