#!/usr/bin/python3 # -*- coding: utf-8 -*- def my_func(x): return [x] def main(): x = 5 my_func(x) if __name__ == "__main__": main()