Als «python-3.x» getaggte Fragen

84
Bytes in int konvertieren?

Ich arbeite derzeit an einem Verschlüsselungs- / Entschlüsselungsprogramm und muss in der Lage sein, Bytes in eine Ganzzahl umzuwandeln. Ich weiß das: bytes([3]) = b'\x03' Ich kann jedoch nicht herausfinden, wie ich das Gegenteil tun soll. Was mache ich furchtbar falsch?

83
PermissionError: [Errno 13] in Python

Ich fange gerade an, etwas Python zu lernen und habe ein Problem wie unten angegeben: a_file = open('E:\Python Win7-64-AMD 3.3\Test', encoding='utf-8') Traceback (most recent call last): File "<pyshell#9>", line 1, in <module> a_file = open('E:\Python Win7-64-AMD 3.3\Test',...

82
Wann wird Jython Python 3 unterstützen?

Laut Jythons Dokumentation : Jython ist eine Implementierung der Python-Sprache für die Java-Plattform. Jython 2.5 implementiert dieselbe Sprache wie CPython 2.5 und fast alle Core Python-Standardbibliotheksmodule. (CPython ist die C-Implementierung der Python-Sprache.) Jython 2.5 verwendet mit...

81
Python-Map-Objekt ist nicht abonnierbar

Warum gibt das folgende Skript den Fehler aus: payIntList[i] = payIntList[i] + 1000 TypeError: 'map' object is not subscriptable payList = [] numElements = 0 while True: payValue = raw_input("Enter the pay amount: ") numElements = numElements + 1 payList.append(payValue) choice =...