This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os, pwd | |
pwd.getpwuid(os.getuid()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fun_return(n): | |
print("Run fun_return") | |
lst = list() | |
for i in range(n): | |
print("Run loop in fun_return") | |
lst.append(i * i) | |
return lst |