PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import math
punc = '''!@#$%^&*()":;'{}[],._-+=\/?`~|'''
remPunc = ""
for char in input():
if char not in punc:
remPunc += char
L = 0
w = 0
for word in remPunc.split():
L += len(word)
w += 1
print(math.ceil(L/w))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run