Skip to content

Latest commit

 

History

History
74 lines (45 loc) · 1.75 KB

File metadata and controls

74 lines (45 loc) · 1.75 KB

Python Programing Bootcamp

Introduction to Python

Lecture-1 Introduction to Python

💁🏻‍♀️ Introduction

Python GuidoVanRossumImage

Python is an open-source (free) programming language that is used in machine learning, data science, web development, and many scientific applications.

It was created by Guido van Rossum, and released in 1991.

🤔 How Print Function Work

Print Function Accept String (String means a plan Text or Group Of Character) And Gives output on standard output Device And in this case Our Screen is the Standard Output Device.

💻 Code Blocks

  • Write a Python Program to "Hello World".
 print("Hello World !!")
print("Hii \n Good Evening \n Welcome To Python Programming!!")

🏠 HomeWork

1️⃣ Write a program to use print() function to print your name, college name and about information. Also use \n (newline character) to separate lines.

👁 Show Answer

print("Name:\nVedika Bhujabal ")
print("college name:\nSSMP")
print("Village Name:\nPune")

🔗 Some Useful Links

Click Here to Open Google Collab

Click Here to Download Slack for Android

Click Here to Download Slack for Desktop

Class Joining link will be the same everyday

📖 References

Python.org