write a program count the number of characture (without space) in the given string #python_language?


 

write a program count the number of characture (without space) in the given string?


st='hyderabad tech hall'

x=0

for i in st:

        if i !=' ':

                x=x+1

print(x)

Comments

Popular posts from this blog

What is DBMS and RDBMS?

what is the role of SQL in DBMS?