Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
1456 - Cuvant
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python" line="1"> # 1456 - Cuvant def validare(propozitie): # functia de verificare a datelor de intrare if len(propozitie) > 100: raise ValueError # daca dsatele de intrare nu corespund, ridicam eroarea ValueError for caracter in propozitie: # verificam sa fie litera mica if ord(caracter) > ord('z') or ord(caracter) < ord('a'): raise ValueError print("Datele de intrare corespund restrictiilor impuse") return True def vocala(litera): # functie de verificare vocale lista_vocale = "aeiou" if litera in lista_vocale: return True else: return False def cuvant(propozitie): nr_consoane = 0 # trebuie sa numaram cate consoane are cuvantul for litera in propozitie: if vocala(litera) is True and litera != 'i': # daca e vocala si nu e i atunci cuvantul nu e valid print("NU") return if vocala(litera) is False: # numaram consoanele nr_consoane += 1 if nr_consoane == 0: # daca nu sunt consoane, cuvantul nu e valid print("NU") return print("DA") # daca am trecut de verificari, e valid if __name__ == '__main__': # din cauza datelor de intrare pot aparea 2 tipuri de erori, valueError sau IndexError pe care le tratam try: sir = input(f"Introduceti cuvantul ") # citirea cuvantului validare(sir) # apelul functiei de validare cuvant(sir) # apelul functiei de rezolvare except ValueError: print("Datele de intrare nu corespund restrictiilor impuse") except IndexError: print("Datele de intrare nu corespund restrictiilor impuse") </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width