It may be a glitch in the settings, or it may a parental block
An audio file format is a file format for storing digital audio data on a computer system. The bit layout of the audio data (excluding metadata) is called the audio coding format and can be uncompressed, or compressed to reduce the file size, often using lossy compression. The data can be a raw bitstream in an audio coding format, but it is usually embedded in a container format or an audio data format with a defined storage layer.
The code to calculate the number of characters and the size of words is as follows:
x = input("Enter your text here: ")
char=0
word=1
for i in x:
char = char+1
if(i==' '):
word=word+1
print("Number of words in the given string ",word)
print("Number of characters in the given string ",char)
<h3>Code explanation:</h3>
The code is written in python
- The first line of code, we store the users input in a variable called x.
- Then we initialise the variable char to zero.
- The variable word is also initialise to zero
- The we loop through the user's input and count the character
- We also look for space to know the word, then count the words .
- Finally, we print the number of word and the number of character.
learn more on python code here: brainly.com/question/20379340