In this training, you will learn the basics of the Internet of Things. The first part is dedicated to an introduction and installation of Raspberry PI OS.
The "Hello World" program :
name = 'My name'
print(f'Hello {name}')
print('What is your name ?')
name = input()
print(f'welcome {name}')
0 comment