clear session files

This commit is contained in:
Usman Nasir
2022-08-20 15:56:50 +05:00
parent 17821ad6ea
commit 7818675685
3 changed files with 16 additions and 9 deletions

View File

@@ -1,9 +1,16 @@
config= {
"name": "habi",
"dev": "python"
}
hey = ['hey', 'aaa', 'aaa', 'adssad']
aaa='aaa'
print(type(hey))
print(type(aaa))
print(hasattr(hey, "__len__"))
print(hasattr(aaa, "__len__"))
print(config)
config['klm'] ="tls"
if type(hey) == list:
print('list')
else:
print('hey not list')
print(config)
if type(aaa) == list:
print('aaa')
else:
print('aaa not list')