3.3
i = str(input("plz input your file name with full extension: "))
print(i)
print("your full file name:",i)
x = 0
for w in range(len(i)):
if i[w] == '.':
x = w
print("your file name without extension:",i[:x])
INFO
i = str(input("plz input your file name with full extension: "))
print(i)
print("your full file name:",i)
x = 0
for w in range(len(i)):
if i[w] == '.':
x = w
print("your file name without extension:",i[:x])