Skip to content

awnishmmg/Python-Documentation-Notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Python-Documentation-Notes

This Contains Complete Postmortem of Python

How to use switch in Python

def switch(x):
	match x:
		case 10:
			print('This is case 10')
		case 11:
			print('This is case 11')
		case _:
			print('Invalid Case')

switch(30)

About

This Contains Complete Postmortem of Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published