88 viewsMay 31, 2023Python#python 0 Monisha M1.03K May 31, 2023 1 Comment What is the use of as keyword in Python example? Monisha M Posted new comment May 31, 2023 Monisha M commented May 31, 2023 The as keyword is used to create an alias. In the example above, we create an alias, c , when importing the calendar module, and now we can refer to the calendar module by using c instead of calendar . 0 Answers ActiveVotedNewestOldest Register or Login
The as keyword is used to create an alias. In the example above, we create an alias, c , when importing the calendar module, and now we can refer to the calendar module by using c instead of calendar .