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 data, information and knowledge?

Q-1-What is difference between drop and delete command? Q-2-what is difference between drop and truncate commands? Q-3-Why truncate is DDL command? Q-4- What is select commands?