Returns the computer's network name (which may not be fully qualified) An empty string is returned if the value cannot be determined.
()
| 1073 | return uname().system |
| 1074 | |
| 1075 | def node(): |
| 1076 | |
| 1077 | """ Returns the computer's network name (which may not be fully |
| 1078 | qualified) |
| 1079 | |
| 1080 | An empty string is returned if the value cannot be determined. |
| 1081 | |
| 1082 | """ |
| 1083 | return uname().node |
| 1084 | |
| 1085 | def release(): |
| 1086 |