Skip to content

vagabon-09/Python-Short-Notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

icons8-python-96

Python

How to run python in vs code?

If you dont know how to run python in vs code you should click here

Python Notes

  • To comment a line use #
  • Multiline comment use """ comment """
  • Assign value in variable variable_name = value
  • To display use print() Example
  • To scan value from user use input() Example

Condition

  • To use if condition use if condition : code else: code Example
  • To use else if condition or nested if use if condition: code elif condition: code else: code Example

Loop

  • To use for loop use for variable_name in array_name: print(variable_name) Example

String

  • Declear String string_name = "string" Example
  • Print String print(string_name)Example
  • Print targeted letter numbers in string string_name.count('target_letter') Example
  • Check length of the string len(string_name)Example
  • Print string in customise way string_name[start:end:difference]Example
  • To check a string is a digit or not stringName.isdigit() this function return boolen if string is a digit it will return true else it will return false
  • To get ascii value of a charecter use ord()

Questions

Author

Avatar

Contribution

Hello guys hope you will like to contribute in this repository for python short notes. Your any types of contribution is acceptable so contribute. And if you like this repository then dont forget to give a star.

About

Short Notes for python programming. Beginner Friendly Questions problem with solved answer

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages