none tag

2 questions


1 answers
135 views
0
To delete none after using def statement in Python

n = input('Enter string:')n = n.lower()n = n.replace(' ','')n = n.replace('',' ')n = n.strip()L = n.split(' ')S = set(L)X = list(S)k = len(X)def moonchk(n) : for i in range(0,k): a = X[i] print(a, '...

1 years ago

1 answers
86 views
0
Search programs, how do I block spaces?

We are making a program that searches for products on various sites using Beautiful Soup4. The problem is that the search function uses url of each site, which has different search logic for each site...

1 years ago

© 2024 OneMinuteCode. All rights reserved.