146k views
3 votes
Given a line of text as input, output the number of characters excluding spaces, periods, or commas.

User Nand Lal
by
7.3k points

1 Answer

1 vote

Answer:

python:

x = input()

print(len(x))

Step-by-step explanation:

User JonyD
by
7.3k points