Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucky-kashyap/learning-python
start learning python with hitesh chaudhary
https://github.com/lucky-kashyap/learning-python
python3
Last synced: 7 days ago
JSON representation
start learning python with hitesh chaudhary
- Host: GitHub
- URL: https://github.com/lucky-kashyap/learning-python
- Owner: Lucky-Kashyap
- Created: 2024-02-20T16:12:43.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-20T16:35:50.000Z (9 months ago)
- Last Synced: 2024-02-20T17:49:41.593Z (9 months ago)
- Topics: python3
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Started Learning Python (core python)
### Use Python 3.11.3
## Basics
#### How to write & run code
- What is the best way to install python
- Installation
- Online code
- Better options to start the python
- check python verion using commmandpython --version
- For running code, open terminal and write python file_name
python hello_world.py
- Define a function & call a function
def hello(n):
print(n)hello("My name is Lucky");
- Call function in another file using import
from hello_world import hello;
hello('Divyanshu');
hello('Kahani Suno jubani suno..!!!');