hi , I have my python code but I couldn't solve it.
here my sample loop:
import os
import sys
whileloop = True
while(whileloop):
initial_drive = "C:\\"
inputline = input(initial_drive) <<< PROBLEM...
if inputline == "exit":
whileloop = False
elif inputline == "about":
print("no input")
elif inputline == "":
print("write a command and press enter.")
elif inputline == "d:\\":
initial_drive = "D:\\"
else:
print("bad command")
it isn't changed into "D:\\" please help me .......
---------------------------------------------------------------
=[cryptacker]=