Text Practice Mode
Python practice
created Jul 30th 2023, 11:48 by sadhu200
0
30 words
13 completed
5
Rating visible after 3 or more votes
saving score / loading statistics ...
00:00
python index.py pip3 install django request pytorch def get_name(): name = input('enter your name:') print(name) return name array = ['one','two','three'] for val in list(array): if val == 'one') print('correct_1') elif: val == 'one': print('correct_2') else: print('error') user = {"name":'Max', "cars": ['bmw','toyota']} user['cars'].append('tesla') print (user.keys(), user.values() )
