Quick actions

cmd+k|ctrl+k

Navigation

Languages

__main__

Snippet info

Language

Python

Visibility

public

Author

hzx33737

Created

2023-05-14T16:24:59.40511Z

Updated

2023-05-15T15:51:56.617769Z

import second  

if __name__ == "__main__":
    print("first.py is running directly")
else:
    print("first.py is being imported")
INFO