Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to use else in exception for inspection in Python

3 Answers

0 votes
try:
    kv = {1: 'php', 2: 'python', 3: 'java'}
    print(kv['php'])
except KeyError as e:
    print('key not found')
else:
    raise ValueError()


'''
run:

key not found

'''

 



answered Sep 26, 2017 by avibootz
0 votes
try:
    kv = {1: 'php', 2: 'python', 3: 'java'}
    print(kv[1])
except KeyError as e:
    print('key not found')
else:
    raise ValueError()


'''
run:

php
Traceback (most recent call last):
  File "C:/python/filename.python", line 8, in <module>
    raise ValueError()
ValueError

'''

 



answered Sep 26, 2017 by avibootz
0 votes
try:
    kv = {1: 'php', 2: 'python', 3: 'java'}
    print(kv[1])
except KeyError as e:
    print('key not found')
#else:
    #raise ValueError()


'''
run:

php

'''

 



answered Sep 26, 2017 by avibootz

Related questions

1 answer 169 views
1 answer 135 views
135 views asked Nov 25, 2018 by avibootz
2 answers 213 views
1 answer 151 views
3 answers 276 views
1 answer 138 views
1 answer 100 views
100 views asked Jun 9, 2020 by avibootz
...