Skip to main content

" Welcome to NiceinPython."

Information of Python Programming Language.

✨ Welcome to NiceinPython Learn

You can learn Python here in an easy and simple way. This website provides Python notes, practice programs, real projects, and a Python setup guide. Everything is explained step by step for beginners. Content is available in Hindi + English and Urdu + English style for easy understanding. NiceinPython is made for learners who want to learn Python by practice and projects, not just by watching or reading.

(Roman English: Yaha par aap Python ko easy aur simple tareeke se seekh sakte ho. Is website par aapko Python Notes, Programming Practice, Real World Projects aur Python Setup Guide milega. Har topic step by step aur simplified learning style me explain kiya gaya hai taaki beginners easily samajh saken. Is website ka content Urdu + English aur Hindi + English language = Roman English style me available hai, taaki learners apni comfortable language me concepts samajh saken. NiceinPython ek beginner-friendly website hai jo un logon ke liye banayi gayi hai jo Python sirf dekh kar ya read karke nahi, balki practice aur projects bana kar seekhna chahte hain.)

Honest Note (Important)

This is not a fancy or fully professional learning platform. I am learning Python myself, and whatever I learn, I share here to help others. This website is part of my learning journey.

(Roman English: Yeh koi fancy ya fully professional learning platform nahi hai. Main khud Python seekh raha hoon aur jo bhi main seekhta hoon, woh yaha share karta hoon taaki dusre learners ko help mil sake. Yeh website meri personal learning journey ka ek part hai. )

Python Learning Roadmap (Beginner to Projects)

Follow the roadmap below to learn Python from basics to projects. All notes, practice programs, and projects on this website follow this roadmap.

(Roman English: Neeche diya gaya roadmap follow karke aap Python basics se lekar real projects tak ka safar complete kar sakte ho. Is website ke sabhi notes, practice programs aur projects isi roadmap ke according banaye gaye hain. )

What You Will Find on NiceinPython

Notes: Simple and short Python notes Practice: Small programs for practice Projects: Beginner-friendly Python projects

(Roman English: Notes: Simple aur short Python notes Practice: Practice ke liye small programs Projects: Beginner-friendly Python projects)

Start Learning

To learn Python properly, follow this flow: Python Setup → Notes → Practice → Projects Start learning Python with NiceinPython. in roman

(Roman English: Python sahi tareeke se seekhne ke liye yeh flow follow karo: Python Setup → Notes → Practice → Projects NiceinPython ke saath Python learning start karo.)

Comments

Popular posts from this blog

Full Python and Vs code Setup Completed

Information of Python Programming Language. ✨ Welcome to NiceinPython Learn Full Python and Vs code Setup Completed.. Python Download and Install – Download Python from the official website, install it, and make sure to tick the PATH option. VS Code Download and Install – Download VS Code and install it on your system. Install Python Extension in VS Code – Open VS Code and install the Python extension from the Extensions section. Check Python Installation – Type python --version in CMD or Terminal to check. Run First Python Program Test – Create a simple Python file, run it, and check the output. For detailed setup, click this button or open the Python Setup Guide page from the menu bar. Python Setup Guide

Print Statments and Comments in Python

1) Print Statement Function in Python A print statement Function is used to show output on the screen. In Python, we write print() with a small letter p, not a capital letter. Roman : Print statement Function screen par output dikhane ke liye use hota hai. Python me print() small letter p se likhte hain, kyunki Python case-sensitive hota hai. Example of Print Statement Function in Python : print("Hello World") Output(show on Terminal): Hello World Another Example of Print Statement Function in Python : print(10) print(2.0) print(True) print(10+5) print(2*5) print(0-0) Output(show on Terminal): 10 2.0 True 15 10 0 2) Comments in Python (Single and Multiples): Single Line Comments using Hash(#) in Python A comment is used to explain a line of code. In Python, a comment is written using #(hash...