0 votes
in Python by

 Can you please clarify what is the explanation that can be utilized in Python Language if the program requires no activity except for requires it linguistically? 

1 Answer

0 votes
by
The pass proclamation is an invalid activity. Nothing happens when it executes. You should utilize "pass" catchphrase in lowercase. On the off chance that you express "Pass," you'll face a mistake like "NameError: name Pass isn't characterized." Python Language articulations are case touchy.

letter = "hai sethuraman"

for I in letter:

in the event that I == "a":

pass

print("pass articulation is execute ..............")

else:

print(i)

Related questions

0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...